- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for testConstructorWithMessage (0.08 seconds)
-
src/test/java/org/codelibs/curl/CurlExceptionTest.java
import org.junit.Test; /** * Test class for CurlException. * Tests exception creation, message handling, and cause propagation. */ public class CurlExceptionTest { @Test public void testConstructorWithMessage() { String message = "Test error message"; CurlException exception = new CurlException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause());Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Jul 31 01:01:12 GMT 2025 - 4.2K bytes - Click Count (0)