Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for allintitle (0.04 seconds)

  1. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

        }
    
        @Test
        public void test_conditions_occurrence() {
            final String k = "occt";
            assertEquals("allintitle:", getAsQuery(Collections.singletonMap(k, new String[] { "allintitle" })));
            assertEquals("allinurl:", getAsQuery(Collections.singletonMap(k, new String[] { "allinurl" })));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

        }
    
        // Test constructor with allintitle prefix
        @Test
        public void test_constructor_allintitlePrefix() {
            queryContext = new QueryContext("allintitle:test query", false);
            assertEquals("test query", queryContext.getQueryString());
            assertEquals("title", queryContext.getDefaultField());
        }
    
        // Test constructor with allintitle prefix and empty remainder
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Map.of("title", List.of("*")), //
                    Set.of(), //
                    buildQuery("allintitle:"));
            assertQueryContext(
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 53.2K bytes
    - Click Count (0)
Back to Top