Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_toLineString_withUpdates (0.17 sec)

  1. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            String[] inputs = { "a", "b", "c" };
            CharMappingItem item = new CharMappingItem(1L, inputs, "output");
    
            assertEquals("a,b,c=>output", item.toLineString());
        }
    
        public void test_toLineString_withUpdates() {
            String[] inputs = { "old1", "old2" };
            CharMappingItem item = new CharMappingItem(1L, inputs, "oldOutput");
    
            item.setNewInputs(new String[] { "new1", "new2", "new3" });
    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