- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for test_getTypes (1 sec)
-
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
fileTypeHelper.setDefaultValue(""); assertEquals("", fileTypeHelper.getDefaultValue()); assertEquals("", fileTypeHelper.get("non/existent")); } public void test_getTypes() { String[] types = fileTypeHelper.getTypes(); assertNotNull(types); assertEquals(0, types.length); fileTypeHelper.add("application/pdf", "pdf");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
stopwordsFile.reload(null, is); } catch (IOException e) { throw new RuntimeException(e); } } // Test basic getters public void test_getType() { assertEquals("stopwords", stopwordsFile.getType()); } public void test_getPath() { assertEquals(testFile.getAbsolutePath(), stopwordsFile.getPath()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
return "# This is a comment\n" + "test1\n" + "test2\n" + "test3\n" + "\n" + // empty line "test\\\\4\n" + // escaped backslash "test5\n"; } public void test_getType() { assertEquals("protwords", protwordsFile.getType()); } public void test_getPath() { assertEquals(testFile.getAbsolutePath(), protwordsFile.getPath()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
if (testFile != null && testFile.exists()) { testFile.delete(); } super.tearDown(); } // Test getType method public void test_getType() { assertEquals("mapping", charMappingFile.getType()); } // Test getPath method public void test_getPath() { assertEquals(testFile.getAbsolutePath(), charMappingFile.getPath());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0)