Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_toLineString_withEmptyInput (0.25 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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());
        }
    
        @Test
        public void test_toLineString_withEmptyInput() {
            // Test toLineString with empty input
            ProtwordsItem item = new ProtwordsItem(1, "");
            assertEquals("", item.toLineString());
    
            item.setNewInput("word");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            // When newInput is set back to null
            item.setNewInput(null);
            assertEquals("original", item.toLineString());
        }
    
        @Test
        public void test_toLineString_withEmptyInput() {
            // Test toLineString with empty original input
            StopwordsItem item = new StopwordsItem(1, "");
            assertEquals("", item.toLineString());
    
            item.setNewInput("new");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
Back to Top