- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 508 for assertNull (0.05 sec)
-
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
// Test unavailable SID type (type 3 - DOMAIN) assertNull(sambaHelper.getAccountId(createMockSID(3, "Domain"))); // Test unavailable SID type (type 6 - DELETED) assertNull(sambaHelper.getAccountId(createMockSID(6, "Deleted Account"))); // Test unavailable SID type (type 7 - INVALID) assertNull(sambaHelper.getAccountId(createMockSID(7, "Invalid Account"))); }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
dataStore = new DataStore() { @Override public void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap) { storeCalled.set(true); assertNull(config); } @Override public void stop() { // Do nothing } }; DataStoreParams params = new DataStoreParams();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
*/ package org.codelibs.curl; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertSame; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.io.IOException; import java.io.InputStream; import java.util.Arrays;
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
decodedInfo.decode(decodeBuffer); // Verify nulls are preserved assertEquals(0, decodedInfo.name.length); assertEquals(0, decodedInfo.name.maximum_length); assertNull(decodedInfo.name.buffer); assertNull(decodedInfo.sid); } @Test void testLsarDnsDomainInfoEncodeDecodeRoundTrip() throws NdrException { // Create DNS domain info with test data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
SearchResult result = new SearchResult(null, 0L, null, 0L, true, null); assertNull(result.getDocumentList()); assertEquals(0L, result.getAllRecordCount()); assertNull(result.getAllRecordCountRelation()); assertEquals(0L, result.getQueryTime()); assertTrue(result.isPartialResults()); assertNull(result.getFacetResponse()); } public void test_constructor_withEmptyList() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
assertEquals("unknown", fileTypeHelper.get("non/existent")); } public void test_setDefaultValue_withNull() { fileTypeHelper.setDefaultValue(null); assertNull(fileTypeHelper.getDefaultValue()); assertNull(fileTypeHelper.get("non/existent")); } public void test_setDefaultValue_withEmpty() { fileTypeHelper.setDefaultValue("");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
@DisplayName("Test setFullUNCPath and related getters") void testFullUNCPath() { request = new Smb2CreateRequest(mockConfig, "test\\file.txt"); assertNull(request.getFullUNCPath()); assertNull(request.getServer()); assertNull(request.getDomain()); request.setFullUNCPath("DOMAIN", "SERVER", "\\\\SERVER\\share\\file.txt"); assertEquals("DOMAIN", request.getDomain());Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
// Assert assertEquals(PreauthIntegrityNegotiateContext.NEGO_CTX_PREAUTH_TYPE, context.getContextType()); assertNull(context.getHashAlgos()); assertNull(context.getSalt()); } @Test @DisplayName("Should encode context correctly") void testEncode() { // ArrangeRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
return "1,2,5:2"; } }; assertNull(fessConfig.getAvailableSmbSidType(0)); assertEquals(1, fessConfig.getAvailableSmbSidType(1)); assertEquals(2, fessConfig.getAvailableSmbSidType(2)); assertNull(fessConfig.getAvailableSmbSidType(3)); assertNull(fessConfig.getAvailableSmbSidType(4)); assertEquals(2, fessConfig.getAvailableSmbSidType(5));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
package jcifs.internal.smb1.trans.nt; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.IOException; import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.BeforeEach;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0)