Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_toLineString_withEmptyInput (0.69 sec)

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

            // When newInput is set back to null
            item.setNewInput(null);
            assertEquals("original", item.toLineString());
        }
    
        public void test_toLineString_withEmptyInput() {
            // Test toLineString with empty original input
            StopwordsItem item = new StopwordsItem(1, "");
            assertEquals("", item.toLineString());
    
            item.setNewInput("new");
    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

            // Test with item created with id=0
            ProtwordsItem newItem = new ProtwordsItem(0, "newword");
            assertEquals("newword", newItem.toLineString());
        }
    
        public void test_toLineString_withEmptyInput() {
            // Test toLineString with empty input
            ProtwordsItem item = new ProtwordsItem(1, "");
            assertEquals("", item.toLineString());
    
            item.setNewInput("word");
    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