- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for test100 (0.19 sec)
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
assertEquals(100, list.size()); assertEquals("test1", list.get(0).getInput()); assertEquals("test100", list.get(99).getInput()); } public void test_specialCharacters() throws Exception { // Test with special characters String content = "test1\n" + "日本語\n" + "word with spaces\n" + "\ttab\tword\t\n"; // Write content to test file
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
assertEquals("*test*", queryCommand.toLowercaseWildcard("*TEST*")); assertEquals("te?t", queryCommand.toLowercaseWildcard("TE?T")); assertEquals("test123", queryCommand.toLowercaseWildcard("TEST123")); assertEquals("", queryCommand.toLowercaseWildcard("")); } public void test_toLowercaseWildcard_disabled() { queryCommand.setLowercaseWildcard(false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
assertNull(result); result = (String) method.invoke(keyMatchHelper, ""); assertEquals("", result); result = (String) method.invoke(keyMatchHelper, "Test123"); assertEquals("test123", result); } public void test_buildQuery_caseSensitivity() { List<String> keywordList = Arrays.asList("Java", "JAVA", "java");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
// Add first document - should trigger indexing because cache size is 1 Map<String, Object> dataMap1 = new HashMap<>(); dataMap1.put("url", "http://example.com/test1"); indexUpdateCallback.store(paramMap, dataMap1); assertEquals(1, indexingHelper.sendDocumentsCalled); // Add second document - should trigger indexing again
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
assertProvideThrowsException("123"); assertProvideThrowsException("0"); assertProvideThrowsException("-1"); assertProvideThrowsException("Test123"); assertProvideThrowsException("123Test"); assertProvideThrowsException("Test123Classification"); } public void test_provide_withLongClassificationName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertEquals(2, cmdList.size()); assertTrue(cmdList.contains("-D" + Constants.FESS_CONFIG_PREFIX + "test1=value1")); assertTrue(cmdList.contains("-D" + Constants.FESS_CONFIG_PREFIX + "test2=value2")); // Clean up System.clearProperty(Constants.FESS_CONFIG_PREFIX + "test1"); System.clearProperty(Constants.FESS_CONFIG_PREFIX + "test2"); System.clearProperty("non.fess.property");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
List<LabelType> labelTypeList = new ArrayList<>(); LabelType labelType1 = new LabelType(); labelType1.setName("Test Label 1"); labelType1.setValue("test1"); labelType1.setPermissions(new String[0]); labelType1.setVirtualHost(""); // Locale is derived from value, not set directly labelType1.setIncludedPaths("/test.*");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java
/** * @author Kevin Bourrillion */ @GwtCompatible @NullUnmarked public class ImmutableLongArrayTest extends TestCase { // Test all creation paths very lazily: by assuming asList() works public void testOf0() { assertThat(ImmutableLongArray.of().asList()).isEmpty(); } public void testOf1() { assertThat(ImmutableLongArray.of(0).asList()).containsExactly(0L); } public void testOf2() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
value = "${\\$}"; assertEquals(value, ResourceUtil.resolve(value)); System.setProperty("test.dir", "c:\\test1\\test2"); value = "${test.dir}"; assertEquals("c:\\test1\\test2", ResourceUtil.resolve(value)); } public void test_getAppType() { // Test default empty when no env var is set
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0)