Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_toLineString (0.7 sec)

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

            item.setNewInput("");
            assertEquals("StopwordsItem [id=123, inputs=word, newInputs=]", item.toString());
        }
    
        public void test_toLineString() {
            // Test toLineString method
            StopwordsItem item = new StopwordsItem(1, "original");
            assertEquals("original", item.toLineString());
    
            // When updated, should return 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

            ProtwordsItem item2 = new ProtwordsItem(0, "createword");
            assertEquals("ProtwordsItem [id=0, inputs=createword, newInputs=createword]", item2.toString());
        }
    
        public void test_toLineString() {
            // Test toLineString method with non-updated item
            ProtwordsItem item = new ProtwordsItem(1, "word");
            assertEquals("word", item.toLineString());
    
            // Test with updated item
    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