Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for hasTitle (0.04 seconds)

  1. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserEdgeCaseTest.java

            boolean hasContent = items.stream().anyMatch(i -> i.getFields()[0].equals("content"));
            boolean hasTitle = items.stream().anyMatch(i -> i.getFields()[0].equals("title"));
            assertTrue("Should have items from content field", hasContent);
            assertTrue("Should have items from title field", hasTitle);
        }
    
        // ============================================================
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

            boolean hasWeb = false;
            boolean hasFile = false;
            for (final ProtocolType type : values) {
                if (type == ProtocolType.WEB) {
                    hasWeb = true;
                } else if (type == ProtocolType.FILE) {
                    hasFile = true;
                }
            }
    
            assertTrue("Should have WEB protocol type", hasWeb);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.3K bytes
    - Click Count (0)
Back to Top