- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for twoArg (0.18 sec)
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
assertEquals(" word ", item1.getInput()); assertEquals(" word ", item1.toLineString()); ProtwordsItem item2 = new ProtwordsItem(2, "\tword\n"); assertEquals("\tword\n", item2.getInput()); assertEquals("\tword\n", item2.toLineString()); ProtwordsItem item3 = new ProtwordsItem(3, " "); assertEquals(" ", item3.getInput()); assertEquals(" ", item3.toLineString());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
} public void test_specialCharacters() throws Exception { // Test with special characters String content = "test1\n" + "日本語\n" + "word with spaces\n" + "\ttab\tword\t\n"; // Write content to test file writeTestFile(content); // Reload the file protwordsFile.reload(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0)