- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for test_instanceOf (0.06 seconds)
-
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) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
assertSame(result1, result2); assertSame(mockConfig, result1); } @Test public void test_register_and_getComponent() { String testInstance = "test_instance"; String componentName = "testComponent"; ComponentUtil.register(testInstance, componentName); String retrieved = ComponentUtil.getComponent(componentName);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)