Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_execute_withWildcardQuery (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            assertNotNull(queryBuilder);
    
            // Should not add empty highlight
            assertTrue(queryContext.getHighlightedQuerySet().isEmpty());
        }
    
        @Test
        public void test_execute_withWildcardQuery() throws Exception {
            QueryContext queryContext = new QueryContext("test*", false);
            WildcardQuery wildcardQuery = new WildcardQuery(new Term("title", "test*"));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

            assertTrue(result instanceof DefaultQueryBuilder);
            // The boost is applied internally to the wrapped queries
        }
    
        @Test
        public void test_execute_withWildcardQuery() {
            // Test executing BoostQuery with a WildcardQuery inside
            Term term = new Term("field", "val*");
            WildcardQuery wildcardQuery = new WildcardQuery(term);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
Back to Top