Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 353 for stesti (0.04 seconds)

  1. src/test/java/org/codelibs/fess/app/service/UserServiceTest.java

            assertEquals("user-id-123", pager.id);
        }
    
        @Test
        public void test_user_mail() {
            final User user = new User();
            assertNull(user.getMail());
    
            user.setMail("test@example.com");
            assertEquals("test@example.com", user.getMail());
        }
    
        @Test
        public void test_user_telephoneNumber() {
            final User user = new User();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            "Quick Feedback - Linux Only",
            "Run checks and functional tests (embedded executer, Linux)",
            "QuickFeedbackLinuxOnly",
        ),
        QUICK_FEEDBACK("Quick Feedback", "Run checks and functional tests (embedded executer, Windows)", "QuickFeedback"),
        PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
        READY_FOR_NIGHTLY(
            "Ready for Nightly",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java

        // ==================================================================================
        //                                                              isFilePathProtocol Tests
        //                                                              =========================
    
        @Test
        public void test_isFilePathProtocol_validProtocols() {
            final ProtocolHelper protocolHelper = new ProtocolHelper();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 35.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java

    import org.junit.jupiter.api.Test;
    
    /**
     * Edge case tests for RankFusionProcessor.
     * Tests boundary conditions, empty states, and error scenarios.
     */
    public class RankFusionProcessorEdgeCaseTest extends UnitFessTestCase {
    
        private static final String ID_FIELD = "_id";
    
        /**
         * Test behavior when no searchers are registered (empty list).
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

        //                                                                ====================
    
        @Test
        public void test_isValidUploadPath_validPath() throws Exception {
            // Create test directory structure
            File baseDir = new File(tempDir.toFile(), "images");
            baseDir.mkdirs();
            File validFile = new File(baseDir, "test.png");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            // The header remains for subsequent tests due to static request handling
            // Different matching header added to same request
            request.addHeader("X-Forwarded-Host", "test.com");
            result = virtualHostHelper.getVirtualHostPath(page);
            assertEquals("/site1/search", result.getRoutingPath()); // Still site1 due to header precedence
        }
    
        @Test
        public void test_getVirtualHostBasePath() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

            val suffix = if (flakyTestStrategy == FlakyTestStrategy.ONLY)"_FlakyTestQuarantine" else ""
            id("${model.projectId}_SmokeTest_$id$suffix")
            name = "Smoke Tests with 3rd Party Plugins ($task) - ${testJava.version.toCapitalized()} Linux$suffix"
            description = "Smoke tests against third party plugins to see if they still work with the current Gradle version"
    
            if (flakyTestStrategy != FlakyTestStrategy.ONLY) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

            // Not used for this test
            return new HashMap<>();
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            // Not used for this test
            return new HashMap<>();
        }
    
        @Override
        @AfterEach
        protected void tearDown() {
            // Custom teardown in tearDownAll
        }
    
        @Test
        void bulkOperationsTest() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java

    import org.junit.jupiter.api.AfterAll;
    import org.junit.jupiter.api.BeforeAll;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.RestAssured;
    import io.restassured.path.json.JsonPath;
    import io.restassured.response.Response;
    
    /**
     * Integration tests for the Labels API (/api/v1/labels)
     */
    @Tag("it")
    public class LabelsApiTests extends ITBase {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  10. .idea/gradle.xml

                <option value="$PROJECT_DIR$/testing/architecture-test" />
                <option value="$PROJECT_DIR$/testing/distributions-basics" />
                <option value="$PROJECT_DIR$/testing/distributions-core" />
                <option value="$PROJECT_DIR$/testing/distributions-integ-tests" />
                <option value="$PROJECT_DIR$/testing/integ-test" />
                <option value="$PROJECT_DIR$/testing/internal-architecture-testing" />
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 10:18:20 GMT 2026
    - 25.5K bytes
    - Click Count (0)
Back to Top