- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for test_isUpdated (0.19 seconds)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
// Test with null input - should return empty string StopwordsItem item3 = new StopwordsItem(3, null); assertEquals("", item3.getInputValue()); } @Test public void test_isUpdated() { // Test isUpdated method StopwordsItem item = new StopwordsItem(1, "original"); assertFalse(item.isUpdated()); item.setNewInput("updated"); assertTrue(item.isUpdated());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) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
// Test with null input - should return empty string ProtwordsItem item3 = new ProtwordsItem(3, null); assertEquals("", item3.getInputValue()); } @Test public void test_isUpdated() { // Test isUpdated method ProtwordsItem item = new ProtwordsItem(1, "word"); assertFalse(item.isUpdated()); item.setNewInput("newword"); assertTrue(item.isUpdated());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/mapping/CharMappingItemTest.java
String[] emptyInputs = {}; CharMappingItem emptyItem = new CharMappingItem(1L, emptyInputs, "output"); assertEquals("", emptyItem.getInputsValue()); } @Test public void test_isUpdated() { String[] inputs = { "input" }; CharMappingItem item = new CharMappingItem(1L, inputs, "output"); // Initially not updated assertFalse(item.isUpdated());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0)