- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for inheritance (1.75 sec)
-
src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java
break; } } assertTrue(foundTestMethod); } public void test_inheritanceHierarchy() { // Test inheritance hierarchy SearchQueryException exception = new SearchQueryException("Inheritance test"); assertTrue(exception instanceof SearchQueryException); assertTrue(exception instanceof FessSystemException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
} } public void test_exceptionInheritance() { // Test exception inheritance hierarchy CommandExecutionException exception = new CommandExecutionException("Test"); // Check inheritance chain assertTrue(exception instanceof CommandExecutionException); assertTrue(exception instanceof FessSystemException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_instanceOf() { // Test inheritance hierarchy UnsupportedSearchException exception = new UnsupportedSearchException("test"); assertTrue(exception instanceof UnsupportedSearchException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
Method method = MethodAnnotatedClass.class.getMethod("nonAnnotatedMethod"); Secured secured = method.getAnnotation(Secured.class); assertNull(secured); } // Test inheritance behavior @Secured({ "ROLE_PARENT" }) static class ParentClass { @Secured({ "ROLE_PARENT_METHOD" }) public void parentMethod() { } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java
} public void test_inheritanceHierarchy() { // Test the inheritance hierarchy ParseException parseException = new ParseException("Hierarchy test"); QueryParseException queryParseException = new QueryParseException(parseException); // Verify inheritance chain assertTrue(queryParseException instanceof QueryParseException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/AbstractStreamingHasher.java
* entire "chunk" (of implementation-dependent length) is ready to be hashed. * * @author Kevin Bourrillion * @author Dimitris Andreou */ // TODO(kevinb): this class still needs some design-and-document-for-inheritance love abstract class AbstractStreamingHasher extends AbstractHasher { /** Buffer via which we pass data to the hash algorithm (the implementor) */ private final ByteBuffer buffer;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
} catch (Exception e) { fail("Should have caught DataStoreException"); } } public void test_inheritance() { // Test inheritance hierarchy DataStoreException exception = new DataStoreException("Test"); assertTrue(exception instanceof DataStoreException); assertTrue(exception instanceof FessSystemException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
webApiRequest = new WebApiRequest(mockRequest, customPath); assertEquals(customPath, webApiRequest.getServletPath()); } // Test wrapper functionality inheritance public void test_inheritedMethods_areProperlyDelegated() { final String customPath = "/api/v1/test"; final String testHeader = "X-Test-Header"; final String testHeaderValue = "TestValue";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
// Setup final String message = "Test inheritance hierarchy"; final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY); // Execute final InvalidQueryException exception = new InvalidQueryException(messageCode, message); // Verify inheritance hierarchy assertTrue(exception instanceof FessSystemException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
assertNotNull(newItem); assertEquals(0L, newItem.getId()); } public void test_idFieldAccess() { // Test direct field access through inheritance TestDictionaryItem item = new TestDictionaryItem(); // Direct field assignment item.id = 999L; // Verify through getter assertEquals(999L, item.getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0)