- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for tempword (0.54 sec)
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
public void test_constructor_withIdZero() { // Test constructor with id = 0 (create mode) ProtwordsItem item = new ProtwordsItem(0, "testword"); assertEquals(0, item.getId()); assertEquals("testword", item.getInput()); assertEquals("testword", item.getNewInput()); } public void test_constructor_withNonZeroId() { // Test constructor with id != 0 (existing item)
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
// and properly closed even when errors might occur protwordsFile.reload(null); // Test normal creation and cleanup of ProtwordsUpdater ProtwordsItem testItem = new ProtwordsItem(0, "testWord"); ProtwordsFile.ProtwordsUpdater updater = null; try { // Create the updater successfully updater = protwordsFile.new ProtwordsUpdater(testItem);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0)