- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 107 for Inherited (0.06 sec)
-
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_inheritanceFromFessSystemException() { // Test that LdapOperationException is properly inherited from FessSystemException LdapOperationException exception = new LdapOperationException("Test"); assertTrue(exception instanceof FessSystemException); assertTrue(exception instanceof RuntimeException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java
import org.mockito.junit.jupiter.MockitoExtension; import jcifs.smb1.Config; /** * Tests for {@link NtlmMessage}. Since {@code NtlmMessage} is abstract we * create a lightweight concrete subclass only to exercise the inherited * behaviour. The tests cover flag manipulation, byte‑buffer operations and * static helpers. Edge cases such as null or short arrays and negative * values are verified to ensure proper exception handling and byte
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// Then assertEquals("childuser", testConfig.getDefaultUsername()); // Overridden assertEquals("parentdomain", testConfig.getDefaultDomain()); // Inherited } @Test @DisplayName("Should validate configuration consistency") void testConfigurationValidation() throws CIFSException { // Given Properties props = new Properties();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
assertEquals(InstanceDefFactory.SESSION, customPagerCreator.getInstanceDef()); assertEquals(AutoBindingDefFactory.NONE, customPagerCreator.getAutoBindingDef()); } // Test inherited behavior from ComponentCreatorImpl public void test_getNamingConvention() { assertSame(namingConvention, pagerCreator.getNamingConvention()); } // Test component name creation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralTest.java
// Given String filename = "\\\\server\\share\\file.txt"; trans2GetDfsReferral = new Trans2GetDfsReferral(mockConfig, filename); // Set path field (inherited from parent) Field pathField = trans2GetDfsReferral.getClass().getSuperclass().getSuperclass().getDeclaredField("path"); pathField.setAccessible(true); pathField.set(trans2GetDfsReferral, filename);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
assertEquals(message, exception.getMessage()); assertTrue(exception.getMessage().length() > 5000); } public void test_getLocalizedMessage() { // Test getLocalizedMessage method (inherited from Throwable) String message = "Localized error message"; DataStoreException exception = new DataStoreException(message); // By default, getLocalizedMessage returns the same as getMessage
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/FauxveridesTest.java
import java.util.Objects; import java.util.Set; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; import org.jspecify.annotations.Nullable; /** * Tests that all {@code public static} methods "inherited" from superclasses are "overridden" in * each immutable-collection class. This ensures, for example, that a call written "{@code * ImmutableSortedSet.copyOf()}" cannot secretly be a call to {@code ImmutableSet.copyOf()}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 9.4K bytes - Viewed (0) -
pom.xml
</execution> </executions> <configuration> <failOnError>false</failOnError> <ignored> <difference> <!-- seems to be a clirr bug that it cannot handle the different inherited return types --> <className>**</className> <differenceType>7006</differenceType> <method>*</method> <from>*</from> <to>*</to> </difference>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
item.setNewInput(null); assertEquals("originalword", item.toLineString()); } public void test_getId() { // Test getId method inherited from DictionaryItem ProtwordsItem item1 = new ProtwordsItem(0, "word"); assertEquals(0, item1.getId()); ProtwordsItem item2 = new ProtwordsItem(999, "word");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java
// Verify that the response inherits from ServerMessageBlock2Response assertTrue(response instanceof jcifs.internal.smb2.ServerMessageBlock2Response); // Test some inherited methods assertFalse(response.isReceived()); assertFalse(response.isError()); assertNull(response.getExpiration()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0)