Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_getInputValue (0.37 sec)

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

            assertEquals("", item2.getInput());
    
            StopwordsItem item3 = new StopwordsItem(3, null);
            assertNull(item3.getInput());
        }
    
        public void test_getInputValue() {
            // Test getInputValue method with various inputs
            StopwordsItem item1 = new StopwordsItem(1, "word");
            assertEquals("word", item1.getInputValue());
    
    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

            assertEquals("", item2.getInput());
    
            ProtwordsItem item3 = new ProtwordsItem(3, null);
            assertNull(item3.getInput());
        }
    
        public void test_getInputValue() {
            // Test getInputValue method with non-null input
            ProtwordsItem item1 = new ProtwordsItem(1, "word");
            assertEquals("word", item1.getInputValue());
    
            // Test with empty string
    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