Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 181 - 190 of 707 for TeSt (0.07 seconds)

  1. src/test/java/org/codelibs/fess/app/web/admin/user/AdminUserActionTest.java

            adminUserAction = new AdminUserAction();
        }
    
        @Test
        public void test_defaultConstructor() {
            final AdminUserAction action = new AdminUserAction();
            assertNotNull(action);
        }
    
        @Test
        public void test_roleConstant() {
            assertEquals("admin-user", AdminUserAction.ROLE);
        }
    
        @Test
        public void test_createForm_initialize() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/query/TermRangeQueryCommandTest.java

            queryCommand.register();
        }
    
        @Test
        public void test_getQueryClassName() {
            assertEquals("TermRangeQuery", queryCommand.getQueryClassName());
        }
    
        @Test
        public void test_execute_withInvalidQuery() {
            try {
                QueryContext context = new QueryContext("test", false);
                Query invalidQuery = new TermQuery(new Term("field", "value"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. .teamcity/src/test/kotlin/BuildTypeTest.kt

                gradleStep.gradleParams,
            )
        }
    
        @Test
        fun `functional test parameters are correct`() {
            val functionalTest =
                FunctionalTest(
                    buildModel,
                    "TestFunctionalTest",
                    "Test Functional Test",
                    "Test Functional Test",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 15 19:30:24 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/chat/ChatPhaseCallbackTest.java

            // Test onChunk
            callback.onChunk("test content", false);
            assertEquals(3, events.size());
            assertEquals("chunk:test content:false", events.get(2));
    
            callback.onChunk("final content", true);
            assertEquals(4, events.size());
            assertEquals("chunk:final content:true", events.get(3));
    
            // Test onError
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java

            settingTestToken();
        }
    
        @AfterAll
        protected static void tearDownAll() {
            deleteTestToken();
        }
    
        @Test
        public void testSuggestWords_ok() {
            Map<String, String> params = new HashMap<>();
            params.put("q", "test");
    
            given().contentType("application/json")
                    .header("Referer", getFessUrl())
                    .params(params)
                    .when()
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/DocMapTest.java

    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class DocMapTest extends UnitFessTestCase {
        @Test
        public void test_DocList() {
            Map<String, Object> value = new LinkedHashMap<>();
            DocMap docMap = new DocMap(value);
            assertTrue(docMap.isEmpty());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/llm/LlmChatResponseTest.java

        }
    
        @Test
        public void test_setContent() {
            final LlmChatResponse response = new LlmChatResponse();
            response.setContent("Test content");
            assertEquals("Test content", response.getContent());
    
            response.setContent("Updated content");
            assertEquals("Updated content", response.getContent());
        }
    
        @Test
        public void test_setFinishReason() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

        }
    
        @Test
        public void test_matches_withNullRequest() {
            // Test null request handling
            WebApiManager manager = new TestWebApiManager("/api");
            assertFalse(manager.matches(null));
        }
    
        @Test
        public void test_matches_withEmptyPath() {
            // Test empty path matching
            WebApiManager manager = new TestWebApiManager("");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.9K bytes
    - Click Count (0)
  9. .teamcity/src/test/kotlin/PromotionProjectTests.kt

                step.gradleParams,
            )
        }
    
        @Test
        fun `start release cycle test promotion build type runs one gradle invocation`() {
            val model = setupModelFor("master")
            val startReleaseCycle = model.findBuildTypeByName("Start Release Cycle Test")
    
            val steps = startReleaseCycle.steps.items
            assertEquals(1, steps.size)
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:41:54 GMT 2025
    - 15.3K bytes
    - Click Count (1)
  10. src/test/java/org/codelibs/fess/helper/CrawlerLogHelperTest.java

        }
    
        @Test
        public void test_log_method_exists() {
            // Test that the log method exists and can be called
            // We can't easily test the actual functionality without complex mocking
            // but we can verify the class structure
            assertNotNull(crawlerLogHelper);
            assertTrue(CrawlerLogHelper.class.getSuperclass().getSimpleName().contains("LogHelper"));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.5K bytes
    - Click Count (0)
Back to Top