Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_isUpdated (0.43 sec)

  1. 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());
        }
    
        public void test_isUpdated() {
            // Test isUpdated method
            StopwordsItem item = new StopwordsItem(1, "original");
            assertFalse(item.isUpdated());
    
            item.setNewInput("updated");
            assertTrue(item.isUpdated());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. 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());
        }
    
        public void test_isUpdated() {
            // Test isUpdated method
            ProtwordsItem item = new ProtwordsItem(1, "word");
            assertFalse(item.isUpdated());
    
            item.setNewInput("newword");
            assertTrue(item.isUpdated());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            String[] emptyInputs = {};
            CharMappingItem emptyItem = new CharMappingItem(1L, emptyInputs, "output");
            assertEquals("", emptyItem.getInputsValue());
        }
    
        public void test_isUpdated() {
            String[] inputs = { "input" };
            CharMappingItem item = new CharMappingItem(1L, inputs, "output");
    
            // Initially not updated
            assertFalse(item.isUpdated());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top