- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 365 for test_0 (0.03 seconds)
-
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
} // Test append method with String value @Test public void test_append_stringValue() { StringBuilder buf = new StringBuilder(); Supplier<Object> supplier = () -> "test string"; monitorTarget.append(buf, "stringKey", supplier); assertEquals("\"stringKey\":\"test string\"", buf.toString()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
assertTrue(true); } } @Test public void test_deleteElevateWord() { try { suggestHelper.deleteElevateWord("test", true); assertTrue(true); } catch (Exception e) { assertTrue(true); } } @Test public void test_addElevateWord() { try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
// Test with null name LdapUser user4 = new LdapUser(testEnv, null); assertNull(user4.getName()); } @Test public void test_getEnvironment() { // Test getEnvironment returns the correct environment Hashtable<String, String> env = ldapUser.getEnvironment(); assertSame(testEnv, env); assertEquals("test.value", env.get("test.key"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.9K bytes - Click Count (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml
files=".*[/\\]maven[/\\]src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\].+"/> <!-- Ignore constant name for architecture tests since we want to use snake case there --> <suppress checks="ConstantName" files=".*[/\\]architecture-test[/\\]src[/\\]test[/\\]java[/\\]org[/\\]gradle[/\\].+" /> <suppress checks="ConstantName"Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 19 16:48:15 GMT 2026 - 13.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
} @Test @Order(3) void crawlingInfoDeleteAllTest() { logger.info("start crawlingInfoDeleteAllTest"); testDeleteAllCrawlingInfo(); } @Test @Order(4) void failureUrlTest() { logger.info("start failureUrlTest"); testReadFailureUrl(); testDeleteFailureUrl(); } @Test @Order(5)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:01:34 GMT 2026 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.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; /** * Integration Tests for /api/admin/failureurl */ @Tag("it") public class FailureUrlTests extends CrawlTestBase {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
3. Build a Gradle distribution using dogfood-first with this hash as a version + fixed timestamp different from the one above -> dogfood-second 4. Use dogfood-second to run a Gradle build which runs tests. */ val dogfoodTimestamp1 = "19800101010101+0000" val dogfoodTimestamp2 = "19800202020202+0000" val buildScanTagForType = buildScanTagParam("Gradleception")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 7.1K bytes - Click Count (0) -
architecture/standards/0004-use-a-platform-architecture.md
Provides cross-cutting integration with IDEs and other tooling. #### Build infrastructure Provides build logic, libraries, test suites and infrastructure to support developing and releasing Gradle. #### Documentation Provides cross-cutting Gradle documentation and samples, along with the infrastructure to write, test, publish and host the documentation. ## Consequences - Assign ownership of each architecture module to one team.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 4.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
indexUpdater.join(1000); } super.tearDown(testInfo); } // Test initialization @Test public void test_init() { indexUpdater.init(); assertNotNull(indexUpdater); } // Test initialization with IngestFactory @Test public void test_init_withIngestFactory() { ComponentUtil.register(ingestFactory, "ingestFactory");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
// May throw different exception in test environment assertNotNull(e); } } // Test getExecuteType method @Test public void test_getExecuteType() { assertEquals(Constants.EXECUTE_TYPE_SUGGEST, suggestJob.getExecuteType()); } // Test session ID generation @Test public void test_sessionIdGeneration() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 31.6K bytes - Click Count (0)