Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testProxyWithNullValue (0.88 sec)

  1. src/test/java/org/codelibs/curl/CurlRequestTest.java

            // Empty body should be accepted
            request.body("");
    
            assertEquals("", request.body());
        }
    
        @Test
        public void testProxyWithNullValue() {
            CurlRequest request = new CurlRequest(Method.GET, "https://example.com");
    
            // Setting proxy to null should work
            request.proxy(null);
    
            assertNull(request.proxy());
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 20.5K bytes
    - Viewed (0)
Back to top