- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 66 for korrekt (0.17 seconds)
-
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
// Execute with second engine Object result2 = scriptExecutor.execute("type2", "script for engine2"); assertEquals("engine2:processed: script for engine2", result2); // Verify correct engine was called each time assertEquals("script for engine1", engine1.getLastScript()); assertEquals("script for engine2", engine2.getLastScript()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java
// Test parameter accepts final boolean (compile-time verification) authenticator.setUseV2Endpoint(true); authenticator.setUseV2Endpoint(false); // Verify method signature is correct assertTrue(true); } @Test public void test_defaultMaxGroupDepth() { EntraIdAuthenticator authenticator = new EntraIdAuthenticator();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 19.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java
assertNotNull(exception); assertEquals(RootAction.class, exception.getActionClass()); } @Test public void test_getActionClass() { // Test getActionClass returns correct class UserRoleLoginException exception = new UserRoleLoginException(RootAction.class); Class<?> actionClass = exception.getActionClass(); assertNotNull(actionClass);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessTransformerTest.java
assertTrue(result instanceof Object[]); Object[] resultArray = (Object[]) result; assertEquals(6, resultArray.length); // Verify all values are in correct positions assertEquals("initial", resultArray[0]); assertEquals("item1", resultArray[1]); assertEquals("item2", resultArray[2]); assertEquals("item3", resultArray[3]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } @Test public void test_serialization() { // Test that the exception has the correct serialVersionUID field ScriptEngineException exception = new ScriptEngineException("Serialization test"); // Verify the exception can be created and basic properties work assertNotNull(exception);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/PingResponseTest.java
} }; ComponentUtil.register(mockConfig, "fessConfig"); // Note: Full testing requires a running OpenSearch cluster // These tests verify the PingResponse class structure is correct assertTrue(true); } @Test public void test_getClusterName_returnsCorrectValue() { // Test cluster name getter exists FessConfig mockConfig = new FessConfig.SimpleImpl() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java
} @Test public void test_constructor() { assertNotNull(target, "Constructor should create instance"); assertTrue(target instanceof HotThreadMonitorTarget, "Instance should be of correct type"); assertTrue(target instanceof MonitorTarget, "Instance should be a MonitorTarget"); assertTrue(target instanceof TimeoutTarget, "Instance should be a TimeoutTarget"); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 4.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
protected void tearDown(TestInfo testInfo) throws Exception { super.tearDown(testInfo); } @Test public void test_getQueryClassName() { // Test that getQueryClassName returns the correct class name String className = matchAllQueryCommand.getQueryClassName(); assertEquals("MatchAllDocsQuery", className); assertEquals(MatchAllDocsQuery.class.getSimpleName(), className); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
StackTraceElement[] stackTrace = exception.getStackTrace(); assertEquals(0, stackTrace.length); } @Test public void test_serialization() { // Test that the exception has correct serialVersionUID String parentUrl = "http://example.com/parent"; String url = "http://example.com/child"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
Set<RequestData> result = crawlerThread.getAnchorSet(urls); assertNotNull(result, "getAnchorSet should return valid URLs only"); assertEquals(3, result.size()); // Verify the URLs are correct List<String> resultUrls = new ArrayList<>(); for (RequestData rd : result) { resultUrls.add(rd.getUrl()); } assertTrue(resultUrls.contains("http://example.com/valid1"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0)