Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 241 - 250 of 717 for TeSt (0.01 seconds)

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

            pager.sessionId = "test-session-123";
            assertEquals("test-session-123", pager.sessionId);
        }
    
        @Test
        public void test_crawlingInfoPager_setId() {
            final CrawlingInfoPager pager = new CrawlingInfoPager();
            pager.id = "crawling-id-456";
            assertEquals("crawling-id-456", pager.id);
        }
    
        @Test
        public void test_crawlingInfoPager_pageSize() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

                assertNotNull(mockHolder[0]);
                assertEquals(bodyContent, new String(mockHolder[0].getCapturedOutput(), StandardCharsets.UTF_8));
            }
        }
    
        // --- Async thread pool execution test ---
    
        @Test
        public void test_AsyncThreadPoolExecution() throws Exception {
            // ## Arrange ##
            CountDownLatch latch = new CountDownLatch(1);
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 12:00:34 GMT 2026
    - 44.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java

            super.tearDown(testInfo);
        }
    
        // Test provider initialization
        @Test
        public void test_providerInitialization() {
            assertNotNull(cookieResourceProvider);
        }
    
        // Test default path
        @Test
        public void test_provideDefaultPath() {
            String defaultPath = cookieResourceProvider.provideDefaultPath();
            assertEquals("/test/path", defaultPath);
        }
    
        // Test default expire
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    import com.google.common.io.BaseEncoding;
    
    public class FacetResponseTest extends UnitFessTestCase {
    
        @Test
        public void test_base64_encoding_decoding() {
            // Test that base64 encoding and decoding works correctly
            String originalString = "test field with spaces";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            // Test with only whitespace value
            value = "password=   ";
            result = ParameterUtil.encrypt(value);
            assertTrue(result.contains("password={cipher}"));
        }
    
        @Test
        public void test_loadConfigParams() {
            Map<String, Object> paramMap;
            String configParam;
    
            // Test with empty map and null config
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            }
        }
    
        @Test
        public void test_toLowercaseWildcard_enabled() {
            queryCommand.setLowercaseWildcard(true);
    
            assertEquals("test", queryCommand.toLowercaseWildcard("TEST"));
            assertEquals("test*", queryCommand.toLowercaseWildcard("TEST*"));
            assertEquals("*test*", queryCommand.toLowercaseWildcard("*TEST*"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            assertEquals("-X777", values[4]);
            assertEquals("-X999", values[5]);
        }
    
        @Test
        public void test_getJavaVersion_edgeCases() {
            // Test with null java.version property
            System.clearProperty("java.version");
            assertEquals(8, JvmUtil.getJavaVersion());
    
            // Test with empty string
            System.setProperty("java.version", "");
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

            };
    
            Artifact artifact = new Artifact("fess-theme-test", "1.0.0");
            Path result = mockThemeHelper.getJarFile(artifact);
            assertEquals(jarPath, result);
        }
    
        @Test
        public void test_getJarFile_notExists() {
            try {
                Artifact artifact = new Artifact("fess-theme-test", "1.0.0");
                themeHelper.getJarFile(artifact);
                fail("Should throw ThemeException");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.7K 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. src/main/webapp/WEB-INF/view/admin/badword/admin_badword_details.jsp

                                    class="card card-outline <c:if test="${crudMode == 1 || crudMode == 2}">card-success</c:if><c:if test="${crudMode == 3}">card-danger</c:if><c:if test="${crudMode == 4}">card-primary</c:if>">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <c:if test="${crudMode == 1}">
                                            <la:message
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7K bytes
    - Click Count (0)
Back to Top