Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_insert (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top