- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 53 for testConstructor (0.06 sec)
-
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
} @Override public void tearDown() throws Exception { crawlerEngineClient = null; super.tearDown(); } // Test constructor public void test_constructor() { // Test that constructor creates a non-null instance assertNotNull(crawlerEngineClient); } // Test inheritance public void test_inheritance() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
ComponentUtil.setFessConfig(fessConfig); } @Override public void tearDown() throws Exception { super.tearDown(); } public void test_constructor() { // Test that constructor creates instance without error PurgeDocJob job = new PurgeDocJob(); assertNotNull(job); } public void test_execute_success() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import org.codelibs.fess.unit.UnitFessTestCase; public class DictionaryExpiredExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test default constructor DictionaryExpiredException exception = new DictionaryExpiredException(); assertNotNull(exception); assertNull(exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
private SearchRenderData searchRenderData; @Override public void setUp() throws Exception { super.setUp(); searchRenderData = new SearchRenderData(); } public void test_constructor() { assertNotNull(searchRenderData); assertNull(searchRenderData.getDocumentItems()); assertNull(searchRenderData.getFacetResponse()); assertNull(searchRenderData.getAppendHighlightParams());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
assertTrue(handler.wasProcessCalled()); assertEquals(origin, handler.getLastOrigin()); } } // Test constructor public void test_constructor() { CorsFilter filter = new CorsFilter(); assertNotNull(filter); } // Test OPTIONS constant public void test_optionsConstant() {
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/exec/SuggestCreatorTest.java
suggestCreator = new SuggestCreator(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Test constructor public void test_constructor() { SuggestCreator creator = new SuggestCreator(); assertNotNull(creator); } // Test Options class default values public void test_Options_defaultValues() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
} @Override public void tearDown() throws Exception { // Clear WebApiManagerFactory super.tearDown(); } // Test constructor public void test_constructor() { assertNotNull(new WebApiFilter()); } // Test init method public void test_init() throws ServletException { FilterConfig filterConfig = new FilterConfig() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
crawlJob = new CrawlJob(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Test constructor and field initialization public void test_constructor() { assertNotNull(crawlJob); assertEquals(Constants.CRAWLING_INFO_SYSTEM_NAME, crawlJob.namespace); assertNull(crawlJob.webConfigIds); assertNull(crawlJob.fileConfigIds);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
import org.opensearch.search.aggregations.Aggregations; import org.opensearch.search.aggregations.InternalAggregations; public class SearchResultTest extends UnitFessTestCase { public void test_constructor() { // Test with normal values List<Map<String, Object>> documentList = new ArrayList<>(); Map<String, Object> doc1 = new HashMap<>(); doc1.put("title", "Test Document 1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
assertEquals(0, userInfoDeletedDays[0]); // Assert result is empty when all succeed assertEquals("", result); } // Test constructor public void test_constructor() { // Test that constructor creates instance without error PurgeLogJob job = new PurgeLogJob(); assertNotNull(job); } // Test multiple exceptions occur
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0)