- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 118 for complex (0.03 sec)
-
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
try { validator.initialize(annotation); assertTrue("Initialize should complete without exception", true); } catch (final Exception e) { fail("Initialize should not throw exception with valid annotation: " + e.getMessage()); } } // Test parameter validation without relying on complex configuration public void test_validateParameters_basic() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
} searchRenderData.setDocumentItems(documents); searchRenderData.setSearchQuery("complex search query"); searchRenderData.setQueryTime(150L); searchRenderData.setExecTime("0.15 sec"); searchRenderData.setRequestedTime(System.currentTimeMillis()); searchRenderData.setQueryId("complex-query-id"); searchRenderData.setAppendHighlightParams("&hl=true&hl.fl=title,content");
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/job/CrawlJobTest.java
assertTrue(result.contains("Data Config Id: data1")); } // Test getRunningJobCount method public void test_getRunningJobCount() { // Skip this test - requires complex DB setup if (true) return; // Setup test with mock ScheduledJobBhv final AtomicInteger callCount = new AtomicInteger(0);
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/entity/SearchLogEventTest.java
// Just verify the methods are callable assertTrue(true); } } // Test with complex source map public void test_complexSourceMap() { TestSearchLogEvent event = new TestSearchLogEvent("complex-id", 1L, "complex"); // Create nested map structure Map<String, Object> nestedMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java
WebResourceRoot.class.isAssignableFrom(FessWebResourceRoot.class)); } public void test_classStructure() { // Basic class structure tests that don't require complex mocking assertEquals("FessWebResourceRoot should be in correct package", "org.codelibs.fess.tomcat.webresources.FessWebResourceRoot", FessWebResourceRoot.class.getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
assertNull(result.getDocumentList().get(0)); } public void test_complexDocumentStructure() { // Test with complex nested document structure Map<String, Object> doc = new HashMap<>(); doc.put("id", "complex"); Map<String, Object> nested = new HashMap<>(); nested.put("level2", "value"); doc.put("nested", nested);
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/ExecJobTest.java
execJob.setExecuteType("crawler"); assertEquals("prefix-crawler-suffix", execJob.testGetLogName("prefix")); } // Test complex scenario with multiple configurations public void test_complexConfiguration() { execJob.sessionId("complex-session") .logFilePath("/var/log/fess") .logLevel("INFO") .logSuffix("daily job") .timeout(300)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.java
import org.lastaflute.web.validation.ActionValidator; public class FessActionValidatorTest extends UnitFessTestCase { public void test_constructor() { // Test basic class structure without complex mocking assertEquals("FessActionValidator should be in correct package", "org.codelibs.fess.validation.FessActionValidator", FessActionValidator.class.getName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java
assertNotNull(result); assertEquals(-1, ((QueryRescorerBuilder) result).windowSize().intValue()); } public void test_evaluate_withComplexParams() { // Test with complex parameter map including nested structures final String testModelName = "complex_model"; final int testWindowSize = 200; ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java
assertTrue(exception instanceof java.io.Serializable); } public void test_getMessage_withComplexCause() { // Test getMessage behavior with complex cause structure final Exception innerCause = new NullPointerException("NPE occurred"); final Exception outerCause = new IllegalStateException("State error", innerCause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0)