Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_ProtectedConstructor (0.35 seconds)

  1. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            Map<String, Object> result = DataStoreParams.getDataMap(regularMap);
            assertSame(regularMap, result);
        }
    
        // Test protected constructor with Map parameter
        @Test
        public void test_protectedConstructor() {
            Map<String, Object> inputMap = new HashMap<>();
            inputMap.put("key1", "value1");
            inputMap.put("key2", 456);
    
            TestDataStoreParams testParams = new TestDataStoreParams(inputMap);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/curl/CurlTest.java

            assertNotNull(request1);
            assertNotNull(request2);
            assertTrue("Factory methods should return different instances", request1 != request2);
        }
    
        @Test
        public void test_ProtectedConstructor() throws Exception {
            // ## Test that protected constructor can be accessed via reflection ##
    
            // ## Act ##
            final Constructor<Curl> constructor = Curl.class.getDeclaredConstructor();
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Thu Nov 20 13:34:13 GMT 2025
    - 16.3K bytes
    - Click Count (0)
Back to Top