- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 474 for assertAll (0.61 sec)
-
src/test/java/jcifs/spnego/SpnegoTokenTest.java
} @Test @DisplayName("Default state is null for both fields") void defaultStateIsNull() { TestSpnegoToken t = new TestSpnegoToken(); assertNull(t.getMechanismToken(), "mechanismToken should default to null"); assertNull(t.getMechanismListMIC(), "mechanismListMIC should default to null"); } @Test @DisplayName("Setter and getter for mechanismToken work")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java
crawlerStatsHelper.done(key); assertNull(localLogMsg.get()); } public void test_beginDoneWithRecordOnLazy() { String key = "test"; crawlerStatsHelper.begin(key); crawlerStatsHelper.record(key, "aaa"); crawlerStatsHelper.runOnThread(key); crawlerStatsHelper.done(key); logger.info(localLogMsg.get()); assertNull(localLogMsg.get());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java
Smb2LeaseKey key = leaseManager.requestLease(path, requestedState); assertNotNull(leaseManager.getLease(key)); leaseManager.releaseLease(key); assertNull(leaseManager.getLease(key)); assertNull(leaseManager.getLeaseByPath(path)); } @Test @DisplayName("Should get lease by path") void testGetLeaseByPath() { String path = "/share/document.doc";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withNullMessage() { // Test with null message LdapConfigurationException exception = new LdapConfigurationException(null); assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
} public void test_getConfigType() { assertNull(crawlingConfigHelper.getConfigType(null)); assertNull(crawlingConfigHelper.getConfigType("")); assertNull(crawlingConfigHelper.getConfigType("XXX")); assertNull(crawlingConfigHelper.getConfigType("W")); assertNull(crawlingConfigHelper.getConfigType("F")); assertNull(crawlingConfigHelper.getConfigType("D"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/QueryRescorerTest.java
return null; } return createMockRescorerBuilder(); } }; assertNull(queryRescorer.evaluate(Collections.emptyMap())); assertNull(queryRescorer.evaluate(new HashMap<>())); } public void test_evaluate_withParams() { // Test implementation that returns a RescorerBuilder
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertNull(languageHelper.getSupportedLanguage("fr")); assertNull(languageHelper.getSupportedLanguage("de")); assertNull(languageHelper.getSupportedLanguage("unknown")); } public void test_getSupportedLanguage_blank() { assertNull(languageHelper.getSupportedLanguage(null)); assertNull(languageHelper.getSupportedLanguage(""));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
// Verify assertNull(result); } public void test_getResponse_withUnsetType() { // Execute - requesting type without setting response ActionResponse result = authenticator.getResponse(SsoResponseType.METADATA); // Verify assertNull(result); } // Test logout method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
@Test public void testNullPasswordHandling() { authenticator = new NtlmPasswordAuthenticator("DOMAIN", "username", (String) null); assertNull(authenticator.getPassword(), "getPassword should return null for null password"); assertNull(authenticator.getPasswordAsCharArray(), "getPasswordAsCharArray should return null for null password"); // secureWipePassword should not throw exception
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
assertEquals(componentName + " is not available.", exception.getMessage()); assertNull(exception.getCause()); // Note: This test reveals that componentName field is not set in this constructor assertNull(exception.getComponentName()); } public void test_constructor_withComponentNameAndCause() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0)