- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for test_getInputValue (0.22 seconds)
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
assertEquals("", item2.getInput()); ProtwordsItem item3 = new ProtwordsItem(3, null); assertNull(item3.getInput()); } @Test 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
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) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertEquals("", item2.getInput()); StopwordsItem item3 = new StopwordsItem(3, null); assertNull(item3.getInput()); } @Test public void test_getInputValue() { // Test getInputValue method with various inputs StopwordsItem item1 = new StopwordsItem(1, "word"); assertEquals("word", item1.getInputValue());
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)