Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 570 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/exec/CrawlerTest.java

        }
    
        // Test destroyContainer private static method via reflection
        @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 process method with different options
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/projects/SmokeTestProject.kt

            name = "Smoke Test"
            description = "Smoke tests against third-party plugins, Gradle build, and IDE sync"
        }) {
        init {
            smokeBuildTypes.forEach(this::buildType)
        }
    
        companion object {
            /**
             * Specific builds shown under the "Smoke Test" subproject in Pull Request Feedback.
             */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

            }
        }
    
        @Test
        public void test_stackTrace() {
            // Test that stack trace is properly set
            PluginException exception = new PluginException("Stack trace test");
    
            assertNotNull(exception.getStackTrace());
            assertTrue(exception.getStackTrace().length > 0);
    
            // Verify that the first stack trace element is from this test method
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class ScheduledJobExceptionTest extends UnitFessTestCase {
    
        @Test
        public void test_constructorWithMessage() {
            // Test constructor with message only
            String message = "Test scheduled job error";
            ScheduledJobException exception = new ScheduledJobException(message);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

        }
    
        // Test namespace setter
        @Test
        public void test_namespace() {
            String testNamespace = "test_namespace";
            CrawlJob result = crawlJob.namespace(testNamespace);
            assertEquals(testNamespace, crawlJob.namespace);
            assertSame(crawlJob, result);
        }
    
        // Test documentExpires setter
        @Test
        public void test_documentExpires() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            source.put("title", "Test Title");
            source.put("content", "Test Content");
            source.put("url", "https://example.com/page.html");
    
            final String json = new JsonIndexExportFormatter().format(source, Collections.emptySet());
    
            assertTrue(json.contains("\"title\": \"Test Title\""));
            assertTrue(json.contains("\"content\": \"Test Content\""));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

        }
    
        @Test
        public void test_evaluate_withParams() {
            // Test implementation that returns a RescorerBuilder
            queryRescorer = new QueryRescorer() {
                @Override
                public RescorerBuilder<?> evaluate(Map<String, Object> params) {
                    if (params != null && params.containsKey("test")) {
                        return createMockRescorerBuilder();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

            assertEquals(priority, webFsIndexHelper.crawlerPriority);
        }
    
        @Test
        public void test_crawlerList_initialization() {
            assertNotNull(webFsIndexHelper.crawlerList);
            assertEquals(0, webFsIndexHelper.crawlerList.size());
        }
    
        @Test
        public void test_crawlerList_synchronization() {
            // Test that the crawler list is synchronized
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

        }
    
        // Test get method
        @Test
        public void test_get_existingItem() {
            // Load test data
            loadTestData();
    
            OptionalEntity<StopwordsItem> result = stopwordsFile.get(1);
            assertTrue(result.isPresent());
            assertEquals("the", result.get().getInput());
        }
    
        @Test
        public void test_get_nonExistingItem() {
            // Load test data
            loadTestData();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            StackTraceElement firstElement = stackTrace[0];
            assertEquals("test_stackTrace", firstElement.getMethodName());
            assertEquals(this.getClass().getName(), firstElement.getClassName());
        }
    
        @Test
        public void test_serialization() {
            // Test that the exception is serializable
            String message = "Serialization test";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.8K bytes
    - Click Count (0)
Back to Top