- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for SetInput (0.05 seconds)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
@Test public void test_getInput() { // Test getInput method StopwordsItem item1 = new StopwordsItem(1, "test"); assertEquals("test", item1.getInput()); StopwordsItem item2 = new StopwordsItem(2, ""); assertEquals("", item2.getInput()); StopwordsItem item3 = new StopwordsItem(3, null); assertNull(item3.getInput()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
assertEquals(4, list.size()); assertEquals("test1", list.get(0).getInput()); assertEquals("日本語", list.get(1).getInput()); assertEquals("word with spaces", list.get(2).getInput()); assertEquals(" tab word ", list.get(3).getInput()); } // Helper method to write content to test file private void writeTestFile(String content) throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertEquals(3, stopwordsFile.stopwordsItemList.size()); assertEquals("word1", stopwordsFile.stopwordsItemList.get(0).getInput()); assertEquals("word2", stopwordsFile.stopwordsItemList.get(1).getInput()); assertEquals("word3", stopwordsFile.stopwordsItemList.get(2).getInput()); } @Test public void test_reload_withEscapedCharacters() { String content = "word\\\\1\n" + // word\1Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
@Test public void test_getInput() { // Test getInput method ProtwordsItem item1 = new ProtwordsItem(1, "word1"); assertEquals("word1", item1.getInput()); ProtwordsItem item2 = new ProtwordsItem(2, ""); assertEquals("", item2.getInput()); ProtwordsItem item3 = new ProtwordsItem(3, null); assertNull(item3.getInput()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0)