Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 556 for Rtest (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    public class UserAgentHelperTest extends UnitFessTestCase {
    
        public UserAgentHelper userAgentHelper;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            userAgentHelper = new UserAgentHelper();
        }
    
        @Test
        public void test_getUserAgentType_IE9() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class SystemUtilTest extends UnitFessTestCase {
    
        @Test
        public void test_getSearchEngineHttpAddress_null() {
            // Clear the system property to test null case
            String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

        }
    
        // Test command string construction edge cases
        @Test
        public void test_command_string_edge_cases() throws Exception {
            // Test with commands containing special characters
            final List<String> specialCommands = Arrays.asList("echo \"test with quotes\"", "echo 'test with single quotes'",
                    "echo test with spaces", "echo test&with&ampersand", "echo test|with|pipe");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

                    (field, boost) -> QueryBuilders.matchQuery(field, "test text").boost(boost),
                    (field, text, boost) -> QueryBuilders.matchQuery(field, text).boost(boost));
    
            // Should build default query
            assertNotNull(result);
            assertTrue(result instanceof DefaultQueryBuilder);
        }
    
        /**
         * Test convertWithFieldCheck() with search field.
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/service/FessAppServiceTest.java

        }
    
        @Test
        public void test_wrapQuery_withLeadingWildcard() {
            assertEquals("*test*", service.callWrapQuery("*test"));
        }
    
        @Test
        public void test_wrapQuery_withTrailingWildcard() {
            assertEquals("*test*", service.callWrapQuery("test*"));
        }
    
        @Test
        public void test_wrapQuery_withBothWildcards() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            assertTrue("Component integration test should be fast", true);
        }
    
        @Test
        public void test_basic_functionality() {
            // Basic functionality test without complex operations
            try {
                List<String> emptyIds = new ArrayList<>();
                dataIndexHelper.crawl("basic-test", emptyIds);
                assertTrue("Basic functionality should be fast", true);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

    import org.codelibs.fess.entity.DataStoreParams;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class IndexUpdateCallbackTest extends UnitFessTestCase {
    
        @Test
        public void test_interface_methods() {
            // Test with anonymous implementation
            IndexUpdateCallback callback = new IndexUpdateCallback() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/mylasta/mail/EsStatusPostcardTest.java

        }
    
        // Basic test to verify test framework is working
        @Test
        public void test_basicAssertion() {
            assertTrue(true);
            assertFalse(false);
            assertNotNull("test");
            assertEquals(1, 1);
        }
    
        // Test placeholder for future implementation
        @Test
        public void test_placeholder() {
            // This test verifies the test class can be instantiated and run
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientTest.java

        }
    
        // Basic test to verify test framework is working
        @Test
        public void test_basicAssertion() {
            assertTrue(true);
            assertFalse(false);
            assertNotNull("test");
            assertEquals(1, 1);
        }
    
        // Test placeholder for future implementation
        @Test
        public void test_placeholder() {
            // This test verifies the test class can be instantiated and run
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

        }
    
        /**
         * Test that evaluate returns null for empty string template
         */
        @Test
        public void test_evaluate_emptyTemplate() {
            final Map<String, Object> params = new HashMap<>();
            params.put("test", "value");
            assertNull(groovyEngine.evaluate("", params));
        }
    
        /**
         * Test that evaluate returns null for whitespace-only template
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
Back to Top