Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_add_bothNull (0.1 seconds)

  1. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

                assertTrue(e.getMessage().contains("scriptEngine: null"));
            }
        }
    
        // Test add method with both null parameters
        @Test
        public void test_add_bothNull() {
            try {
                scriptEngineFactory.add(null, null);
                fail("Should throw IllegalArgumentException for null parameters");
            } catch (IllegalArgumentException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

                assertTrue(e.getMessage().contains("dataStore: null"));
            }
        }
    
        // Test add method with both null parameters
        @Test
        public void test_add_bothNull() {
            try {
                dataStoreFactory.add(null, null);
                fail("Should throw IllegalArgumentException");
            } catch (IllegalArgumentException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
Back to Top