Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for realistic (1.15 sec)

  1. CLAUDE.md

    - For timestamp tests: use minimal delays (50-100ms)
    - Clean only test-specific indices (not `_all` unless needed)
    - Use `runner.refresh()` after index operations
    - Test with realistic multilingual content
    
    ### Key Test Classes
    
    - `SuggesterRefactoringTest` - Index lifecycle, alias management
    - `SuggesterTest` - Core functionality
    - `SuggestIndexerTest` - Indexing operations
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

        }
    
        // Additional tests for escapeWildcardQuery
        @Test
        public void testEscapeWildcardQueryWithMixedContent() {
            // Test with realistic query containing wildcards and regular text
            String query = "find*all?documents.pdf";
            String escaped = SuggestUtil.escapeWildcardQuery(query);
            assertEquals("find\\*all\\?documents.pdf", escaped);
        }
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 26.7K bytes
    - Viewed (0)
Back to top