- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for test_add (0.04 sec)
-
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
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/helper/DuplicateHostHelperTest.java
assertEquals(1, helper.duplicateHostList.size()); assertEquals("www.test.com", helper.duplicateHostList.get(0).getRegularName()); } public void test_add() { DuplicateHostHelper helper = new DuplicateHostHelper(); DuplicateHost testHost = new DuplicateHost(); testHost.setRegularName("www.test.com");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/resources/test_app.xml
Shinsuke Sugaya <******@****.***> 1755612576 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 390 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
assertTrue(generator.generate("test_id", outputFile)); } finally { outputFile.delete(); } } public void test_generate_outputFile_null() throws Exception { generator.setCommandList(Collections.singletonList("echo test")); try { generator.generate("test_id", null); fail("Should throw exception for null output file");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
} } }; ComponentUtil.register(dictionaryManager, "dictionaryManager"); // Initialize ProtwordsFile protwordsFile = new ProtwordsFile("test_id", testFile.getAbsolutePath(), new Date()); protwordsFile.manager(dictionaryManager); } @Override public void tearDown() throws Exception { if (testFile != null && testFile.exists()) {
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/stopwords/StopwordsFileTest.java
} } }; ComponentUtil.register(dictionaryManager, "dictionaryManager"); // Create StopwordsFile instance stopwordsFile = new StopwordsFile("test_id", testFile.getAbsolutePath(), new Date()); stopwordsFile.manager(dictionaryManager); } @Override public void tearDown() throws Exception { if (testFile != null && testFile.exists()) {
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/mapping/CharMappingFileTest.java
} } }; ComponentUtil.register(dictionaryManager, "dictionaryManager"); // Initialize CharMappingFile charMappingFile = new CharMappingFile("test_id", testFile.getAbsolutePath(), new Date()); charMappingFile.manager(dictionaryManager); } @Override public void tearDown() throws Exception { if (testFile != null && testFile.exists()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java
assertEquals("test with tabs", escaped); assertFalse(escaped.contains("\t")); } public void test_statsKeyObjectWithoutUrl() { StatsKeyObject key = new StatsKeyObject("test_id"); crawlerStatsHelper.begin(key); crawlerStatsHelper.record(key, "action"); crawlerStatsHelper.done(key); String[] values = localLogMsg.get().split("\t");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
PythonJob result = pythonJob.filename("test.py"); assertSame(pythonJob, result); assertEquals("test.py", pythonJob.filename); } // Test single argument addition public void test_arg() { assertTrue(pythonJob.argList.isEmpty()); PythonJob result = pythonJob.arg("arg1"); assertSame(pythonJob, result); assertEquals(1, pythonJob.argList.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
org.codelibs.fess.crawler.entity.ResultData resultData) { // Initialize test access result } @Override public String getId() { return "test_id"; } @Override public String getSessionId() { return "test_session"; } @Override public String getRuleId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0)