- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 554 for 1test (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
assertEquals(3, dataMap.size()); } @Test public void test_isUrlCrawlable_noExcludePattern() { DataStoreParams paramMap = new DataStoreParams(); String url = "http://example.com/test.html"; boolean result = indexUpdateCallback.isUrlCrawlable(paramMap, url); assertTrue(result); } @Test public void test_isUrlCrawlable_excludePatternAsString() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/JobLogTest.java
super.setUp(testInfo); ComponentUtil.register(new SystemHelper(), "systemHelper"); } @Test public void test_defaultConstructor() { final JobLog jobLog = new JobLog(); assertNotNull(jobLog); assertNull(jobLog.getId()); } @Test public void test_constructorWithScheduledJob() { final ScheduledJob scheduledJob = createTestScheduledJob();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 3.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java
} @Test public void test_sanitizeFilename_removesDoubleDotsAndWhitespace() { assertEquals("/test.log", AdminLogAction.sanitizeFilename(".. /test.log")); assertEquals("/test.log", AdminLogAction.sanitizeFilename(" ../test.log")); assertEquals("/test.log", AdminLogAction.sanitizeFilename(".. / .. /test.log"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java
assertEquals("Test Title", documentHelper.getTitle(responseData, " Test Title ", dataMap)); assertEquals("Test Title", documentHelper.getTitle(responseData, "Test Title", dataMap)); assertEquals("Test Title", documentHelper.getTitle(responseData, "Test\nTitle", dataMap)); assertEquals("Test Title", documentHelper.getTitle(responseData, "Test\tTitle", dataMap));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
} } } dir.delete(); } // Test getExecuteType method @Test public void test_getExecuteType() { assertEquals(Constants.EXECUTE_TYPE_THUMBNAIL, thumbnailJob.getExecuteType()); } // Test numOfThreads setter @Test public void test_numOfThreads() { assertEquals(1, thumbnailJob.numOfThreads);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
form.id = "test-id"; form.seqNo = 1L; form.primaryTerm = 1L; form.crudMode = CrudMode.EDIT; assertEquals("test-id", form.id); assertEquals(1L, form.seqNo.longValue()); assertEquals(1L, form.primaryTerm.longValue()); assertEquals(CrudMode.EDIT, form.crudMode.intValue()); } @Test public void test_deleteForm_fields() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 11K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
} @Test public void test_serialVersionUID() { // Test that serialVersionUID is properly defined FessSystemException exception1 = new FessSystemException("Test"); FessSystemException exception2 = new FessSystemException("Test"); // Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
} @Test public void test_constructor_withNullMessage() { // Test constructor with null message SsoProcessException exception = new SsoProcessException((String) null); assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withNullCause() { // Test constructor with null causeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
super.tearDown(testInfo); } // Test constructor @Test public void test_constructor() { // Test that constructor creates a non-null instance assertNotNull(crawlerEngineClient); } // Test inheritance @Test public void test_inheritance() { // Test that CrawlerEngineClient is properly inherited
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5K bytes - Click Count (0)