- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for test_insert (0.78 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertNotNull(result); assertNotNull(stopwordsFile.stopwordsItemList); } // Test insert method public void test_insert() { loadTestData(); StopwordsItem newItem = new StopwordsItem(0, "test"); stopwordsFile.insert(newItem); // Verify the item was added boolean found = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 3); assertEquals(3, list.size()); assertEquals("test1", list.get(0).getInput()); } public void test_insert() { // Create new item for insertion ProtwordsItem newItem = new ProtwordsItem(0, "newWord"); // Insert the item protwordsFile.insert(newItem);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
assertEquals(0, result5.size()); assertEquals(3, result5.getAllRecordCount()); } // Test insert method public void test_insert() throws Exception { writeTestFile("a,b => c\n"); CharMappingItem newItem = new CharMappingItem(0, new String[] { "x", "y" }, "z"); charMappingFile.insert(newItem);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsTest.java
} @Test void testResolve_IpcShare() throws SmbAuthException { assertNull(dfs.resolve("domain", "IPC$", "path", auth)); } @Test void testInsert() { String path = "\\server\\share\\folder"; DfsReferral dr = new DfsReferral(); dr.pathConsumed = path.length(); dfs.insert(path, dr); assertNotNull(dfs.referrals);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.6K bytes - Viewed (0)