Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test_specialCharacters (0.1 sec)

  1. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            item.setNewInput("third");
            assertEquals("third", item.toLineString());
            assertTrue(item.isUpdated());
            assertFalse(item.isDeleted());
        }
    
        public void test_specialCharacters() {
            // Test with special characters
            String specialInput = "test@#$%^&*()_+-=[]{}|;':\",./<>?";
            StopwordsItem item = new StopwordsItem(1, specialInput);
    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

            item.setNewInput("third");
            assertTrue(item.isUpdated());
            assertFalse(item.isDeleted());
            assertEquals("third", item.toLineString());
        }
    
        public void test_specialCharacters() {
            // Test with special characters in input
            String specialInput = "test@#$%^&*()_+-=[]{}|;':\",./<>?";
            ProtwordsItem item = new ProtwordsItem(1, specialInput);
    
    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/protwords/ProtwordsFileTest.java

            assertEquals(100, list.size());
            assertEquals("test1", list.get(0).getInput());
            assertEquals("test100", list.get(99).getInput());
        }
    
        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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10);
            assertEquals(2, result.size());
        }
    
        // Test with special characters in mapping
        public void test_specialCharacters() throws Exception {
            writeTestFile("α,β => γ\n中,文 => 字\n");
    
            PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10);
            assertEquals(2, result.size());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
Back to top