Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 35 for stesti (0.03 seconds)

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

            assertNull(System.getProperty("test." + now));
            appValue.set("=abc\nfess." + now + "=test1\ntest." + now + "=test2");
            helper.updateSystemProperties();
            assertEquals("test1", System.getProperty("fess." + now));
            assertEquals("test2", System.getProperty("test." + now));
        }
    
        @Test
        public void test_getCurrentTime() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/projects/StageProject.kt

                            "All Cross-Version Tests for ${stage.stageName.stageName}",
                            "Stage_${stage.stageName.id}_CrossVersionTests",
                            model,
                            crossVersionTests + previousCrossVersionTests,
                        ),
                    )
                }
    
                // in gradleBuildSmokeTest, most of the tests are for using the configuration cache on gradle/gradle
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  3. CONTRIBUTING.md

    Available JDKs on your machine are automatically detected and wired for the various compile and test tasks.
    Some tests require multiple JDKs to be installed on your computer, be aware of this if you make changes related to anything toolchains related.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  4. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "plugins-jvm-test-fixtures",
        "path": "platforms/jvm/plugins-jvm-test-fixtures",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "plugins-jvm-test-suite",
        "path": "platforms/jvm/plugins-jvm-test-suite",
        "unitTests": false,
        "functionalTests": true,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 15:03:00 GMT 2026
    - 42K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

        // ===================================================================================
        //                                                              fess.var.path Tests
        //                                                              ====================
    
        @Test
        public void test_validateFilePath_validPathUnderVarPath() throws Exception {
            final FessAdminAction action = createAction();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  6. src/main/resources/fess_message_pt_BR.properties

    errors.failed_to_delete_doc_in_admin = Não foi possível excluir o documento.
    errors.failed_to_send_testmail=Não foi possível enviar o e-mail de teste.
    errors.invalid_query_unknown = A consulta especificada tem condições desconhecidas.
    errors.invalid_query_parse_error = A consulta fornecida é inválida.
    errors.invalid_query_sort_value = A ordenação especificada {0} é inválida.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  7. .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)
  8. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

        //                                                                        ============
    
        @Test
        public void test_Status_OK() {
            assertEquals(0, Status.OK.getId());
        }
    
        @Test
        public void test_Status_BAD_REQUEST() {
            assertEquals(1, Status.BAD_REQUEST.getId());
        }
    
        @Test
        public void test_Status_SYSTEM_ERROR() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  9. .teamcity/pom.xml

                            </goals>
                        </execution>
                        <execution>
                            <id>test-compile</id>
                            <phase>process-test-sources</phase>
                            <goals>
                                <goal>test-compile</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 22:03:46 GMT 2026
    - 7.4K bytes
    - Click Count (2)
  10. .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)
Back to Top