Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 311 - 320 of 717 for TeSt (0.06 seconds)

  1. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

        }
    
        @Test
        public void test_authenticatorInstantiation() {
            // Verify authenticator can be instantiated without errors
            SamlAuthenticator authenticator = new SamlAuthenticator();
            assertNotNull(authenticator);
        }
    
        @Test
        public void test_defaultSettings_emailAddressCorrect() throws Exception {
    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)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            }
        }
    
        @Test
        public void test_addCondition() {
            // Test adding conditions
            generator = new TestThumbnailGenerator();
    
            // Test adding single condition
            generator.addCondition("field1", "value1");
    
            // Test adding multiple conditions for same field
            generator.addCondition("field1", "value2");
    
            // Test adding conditions for different fields
    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)
  3. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

        }
    
        @Test
        public void test_isInitialized() {
            assertTrue(markdownRenderer.isInitialized());
        }
    
        @Test
        public void test_render_null() {
            assertEquals("", markdownRenderer.render(null));
        }
    
        @Test
        public void test_render_empty() {
            assertEquals("", markdownRenderer.render(""));
        }
    
        @Test
        public void test_render_plainText() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

            }
        }
    
        @Test
        public void test_destroyContainer() throws Exception {
            // Test destroyContainer method - skip this test as it conflicts with container management
            // The test framework manages the container lifecycle
            assertTrue(true);
        }
    
        @Test
        public void test_process_cleanupMode() throws Exception {
            // Test process method in cleanup mode
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

        @Test
        public void test_insertBulkData_createOnlyFalse() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            testClient.insertBulkData(fessConfig, "fess_config.scheduled_job", "test.bulk", false);
    
            assertEquals(1, testClient.insertBulkDataCalls.size());
            assertFalse(testClient.lastCreateOnly);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/curl/CurlResponseTest.java

    import org.codelibs.curl.io.ContentCache;
    import org.junit.Test;
    
    /**
     * Test class for CurlResponse.
     * Tests response handling, header operations, and content access.
     */
    public class CurlResponseTest {
    
        @Test
        public void testConstructor() {
            CurlResponse response = new CurlResponse();
            assertNotNull(response);
        }
    
        @Test
        public void testHttpStatusCode() {
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 09:11:12 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            assertEquals("aaa\\bbb", ldapManager.getSearchRoleName("cn=aaa\\bbb"));
            assertEquals("aaa\\bbb", ldapManager.getSearchRoleName("cn=aaa\\bbb,du=test"));
            assertEquals("aaa\\bbb\\ccc", ldapManager.getSearchRoleName("cn=aaa\\bbb\\ccc"));
            assertEquals("aaa\\bbb\\ccc", ldapManager.getSearchRoleName("cn=aaa\\bbb\\ccc,du=test\""));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            super.tearDown(testInfo);
        }
    
        @Test
        public void test_constructor() {
            // Test that constructor creates an instance
            ScriptExecutor executor = new ScriptExecutor();
            assertNotNull(executor);
            assertTrue(executor instanceof JobExecutor);
        }
    
        @Test
        public void test_execute_withValidScriptType() {
            // Setup test script engine
    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)
  9. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

        }
    
        /**
         * Test that FessLabels extends UserMessages
         */
        @Test
        public void test_extendsUserMessages() {
            assertTrue(org.lastaflute.core.message.UserMessages.class.isAssignableFrom(FessLabels.class));
        }
    
        /**
         * Test field count to ensure no unexpected fields are added
         */
        @Test
        public void test_fieldCount() throws Exception {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java

                TimeZone.setDefault(originalDefault);
            }
        }
    
        @Test
        public void test_processDBFluteSystem_unlocksAndLocks() {
            // This test verifies that the DBFluteSystem is properly unlocked and locked
            // during the process, though we can't directly test the lock state
    
            // When
            try {
                curtainBeforeHook.processDBFluteSystem();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.4K bytes
    - Click Count (0)
Back to Top