Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for existingword (0.24 sec)

  1. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            // Non-zero id should not auto-set newInput
            StopwordsItem existingItem = new StopwordsItem(1, "existingword");
            assertFalse(existingItem.isUpdated());
            assertNull(existingItem.getNewInput());
            assertEquals("existingword", existingItem.toLineString());
        }
    
        public void test_multipleUpdates() {
            // Test multiple updates to newInput
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

        }
    
        public void test_constructor_withNonZeroId() {
            // Test constructor with id != 0 (existing item)
            ProtwordsItem item = new ProtwordsItem(123, "existingword");
    
            assertEquals(123, item.getId());
            assertEquals("existingword", item.getInput());
            assertNull(item.getNewInput());
        }
    
        public void test_getNewInput() {
            // Test getNewInput method
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top