Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 59 for korrekt (0.04 seconds)

  1. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

        }
    
        @Test
        public void test_classStructure() {
            // Test that the class exists and has the expected structure
            assertEquals("CustomSizeValidator should be in correct package", "org.codelibs.fess.validation.CustomSizeValidator",
                    CustomSizeValidator.class.getName());
    
            // Test that it implements ConstraintValidator
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  2. dbflute_fess/_readme.txt

    resources located to the "playsql" directory.
    
    manage.bat(sh) => 25 (outside-sql-test):
    A execution command of OutsideSqlTest task
    which executes outside-SQL files and you can check
    whether the SQLs have correct formats.
    
    The directories are for DBFlute tasks:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Click Count (0)
  3. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    failed!",requiredField:"This is a required field",requiredFields:"You have not answered all required fields",badTime:"You have not given a correct time",badEmail:"You have not given a correct e-mail address",badTelephone:"You have not given a correct phone number",badSecurityAnswer:"You have not given a correct answer to the security question",badDate:"You have not given a correct date",lengthBadStart:"The input value must be between ",lengthBadEnd:" characters",lengthTooLongStart:"The input value is longer...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 32.8K bytes
    - Click Count (0)
  4. 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)
  5. 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());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

            assertFalse(crawlerEngineClient.equals(other));
        }
    
        // Test getClass method
        @Test
        public void test_getClass() {
            // Test that getClass returns the correct class
            assertEquals(CrawlerEngineClient.class, crawlerEngineClient.getClass());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5K bytes
    - Click Count (0)
  10. 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");
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.3K bytes
    - Click Count (0)
Back to Top