- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for test_instance (0.14 seconds)
-
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
String testInstance = "test_instance"; ComponentUtil.register(testInstance, String.class.getCanonicalName()); String retrieved = ComponentUtil.getComponent(String.class); assertSame(testInstance, retrieved); } @Test public void test_getComponent_byName_fromMap() { Integer testInstance = 42; String componentName = "testInteger";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_instanceOf() { // Test inheritance hierarchy UnsupportedSearchException exception = new UnsupportedSearchException("test"); assertTrue(exception instanceof UnsupportedSearchException);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_instanceOf() { // Test that exception is instance of RuntimeException DictionaryExpiredException exception = new DictionaryExpiredException(); assertTrue(exception instanceof RuntimeException);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.5K bytes - Click Count (0)