Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. src/test/java/org/codelibs/fess/entity/HighlightInfoTest.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.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/api/json/SearchApiManagerTest.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.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsCreatorTest.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.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

        public void test_basicValidCronExpressions() {
            final ConstraintValidatorContext context = null;
    
            // Test basic patterns that should be valid
            String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour
                    "0 */15 * * * ?", // Every 15 minutes
                    "0 0 12 * * ?", // Daily at noon
                    "0 15 10 ? * MON-FRI" // Weekdays at 10:15
            };
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

        }
    
        @Test
        public void test_createScript_noLangFields() {
            languageHelper.langFields = new String[] {};
    
            Map<String, Object> doc = new HashMap<>();
            doc.put("lang", "ja");
    
            Script result = languageHelper.createScript(doc, "test");
            assertEquals("test", result.getIdOrCode());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top