Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 51 for korrekt (0.04 seconds)

  1. src/main/resources/fess_message_de.properties

    errors.crud_could_not_find_crud_table = Die Daten {0} wurden nicht gefunden.
    errors.could_not_find_backup_index=Kein Backup-Index gefunden.
    errors.no_user_for_changing_password=Das aktuelle Passwort ist nicht korrekt.
    errors.failed_to_change_password=Fehler beim Ändern Ihres Passworts.
    errors.unknown_version_for_upgrade=Unbekannte Version für Upgrade.
    errors.failed_to_upgrade_from=Fehler beim Upgrade von {0}.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java

            // The constant should be accessible and properly named
            // We can't easily test the actual configuration without full DI setup,
            // but we verify the class structure is correct
            assertTrue(true);
        }
    
        @Test
        public void test_securitySettings_allowUnsecureBasic() throws Exception {
            // Verify the ALLOW_UNSEC_BASIC setting is documented with security warnings
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            String result = purgeDocJob.execute();
    
            // Assert deleteByQuery was called
            assertTrue(deleteByQueryCalled);
    
            // Assert correct index was used
            assertEquals("fess.update", deleteIndex);
    
            // Assert query builder is correct
            assertNotNull(deleteQuery);
            assertTrue(deleteQuery instanceof RangeQueryBuilder);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

    import org.junit.jupiter.api.Test;
    
    public class FessWebResourceRootTest extends UnitFessTestCase {
    
        @Test
        public void test_classExists() {
            // Basic test to verify the class exists and has the correct structure
            assertNotNull(FessWebResourceRoot.class, "FessWebResourceRoot class should exist");
        }
    
        @Test
        public void test_inheritance() {
            // Verify that FessWebResourceRoot extends StandardRoot
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

            }
    
            // Verify that the scroll method exists with correct signature
            try {
                SearchEngineUtil.class.getMethod("scroll", String.class, java.util.function.Function.class);
            } catch (NoSuchMethodException e) {
                fail("scroll method should exist with correct signature");
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java

        }
    
        @Test
        public void test_name() {
            // Test name() method returns correct string representation
            assertEquals("METADATA", SsoResponseType.METADATA.name());
            assertEquals("LOGOUT", SsoResponseType.LOGOUT.name());
        }
    
        @Test
        public void test_ordinal() {
            // Test ordinal() method returns correct position
            assertEquals(0, SsoResponseType.METADATA.ordinal());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            assertNotNull(authenticator);
        }
    
        @Test
        public void test_defaultSettings_emailAddressCorrect() throws Exception {
            // Test that the email typo fix is correct: support@@example.com -> ******@****.***
            Map<String, Object> defaultSettings = createDefaultSettings();
    
            // Verify email addresses are correctly formatted (no double @)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.java

    public class FessActionValidatorTest extends UnitFessTestCase {
    
        @Test
        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());
        }
    
        @Test
        public void test_inheritance() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            String svgPatternCorrect = "image/svg\\+xml"; // Correct: \\+ matches literal +
    
            // Verify wrong pattern does NOT match (demonstrates the bug)
            assertFalse(svgMimetype.matches(svgPatternWrong));
    
            // Verify correct pattern DOES match (demonstrates the fix)
            assertTrue(svgMimetype.matches(svgPatternCorrect));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

        }
    
        @Test
        public void test_constructor() {
            assertNotNull(target, "Constructor should create instance");
            assertTrue(target instanceof SystemMonitorTarget, "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
    - 9.2K bytes
    - Click Count (0)
Back to Top