- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 718 for test$ (0.02 seconds)
-
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
} @Test public void test_convertPhraseQuery_searchField_content() { // Test with search field (content) PhraseQuery.Builder builder = new PhraseQuery.Builder(); builder.add(new Term("content", "test")); PhraseQuery phraseQuery = builder.build(); QueryContext context = new QueryContext("test", false);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
} @Test public void test_createScript_noLangFields() { languageHelper.langFields = new String[] {}; Map<String, Object> doc = new HashMap<>(); doc.put("lang", "ja"); Script result = languageHelper.createScript(doc, "test"); assertEquals("test", result.getIdOrCode()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
} @Test public void test_serialVersionUID() { // Test that serialVersionUID is properly defined ContainerNotAvailableException exception1 = new ContainerNotAvailableException("test"); ContainerNotAvailableException exception2 = new ContainerNotAvailableException("test"); // Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.1K bytes - Click Count (0) -
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) -
src/test/java/org/codelibs/fess/api/WebApiManagerFactoryTest.java
} // Basic test to verify test framework is working @Test public void test_basicAssertion() { assertTrue(true); assertFalse(false); assertNotNull("test"); assertEquals(1, 1); } // Test placeholder for future implementation @Test public void test_placeholder() { // This test verifies the test class can be instantiated and runCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/HighlightInfoTest.java
} // Basic test to verify test framework is working @Test public void test_basicAssertion() { assertTrue(true); assertFalse(false); assertNotNull("test"); assertEquals(1, 1); } // Test placeholder for future implementation @Test public void test_placeholder() { // This test verifies the test class can be instantiated and runCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/json/SearchApiManagerTest.java
} // Basic test to verify test framework is working @Test public void test_basicAssertion() { assertTrue(true); assertFalse(false); assertNotNull("test"); assertEquals(1, 1); } // Test placeholder for future implementation @Test public void test_placeholder() { // This test verifies the test class can be instantiated and runCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsCreatorTest.java
} // Basic test to verify test framework is working @Test public void test_basicAssertion() { assertTrue(true); assertFalse(false); assertNotNull("test"); assertEquals(1, 1); } // Test placeholder for future implementation @Test public void test_placeholder() { // This test verifies the test class can be instantiated and runCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
public void test_basicValidCronExpressions() { final ConstraintValidatorContext context = null; // Test basic patterns that should be valid String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour "0 */15 * * * ?", // Every 15 minutes "0 0 12 * * ?", // Daily at noon "0 15 10 ? * MON-FRI" // Weekdays at 10:15 };
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 4.6K bytes - Click Count (0) -
src/test/resources/thumbnail/test_generate_thumbnail.sh
chmod +x "${GENERATE_THUMBNAIL}" echo "--- Basic argument tests ---" # Test: No arguments run_test "no arguments" 1 "${GENERATE_THUMBNAIL}" # Test: Empty command type run_test "empty command type" 1 "${GENERATE_THUMBNAIL}" "" "file:/tmp/test" "/tmp/out.png" # Test: Unsupported command type run_test "unsupported command type" 1 "${GENERATE_THUMBNAIL}" "unsupported" "file:/tmp/test" "/tmp/out.png" echo ""Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 04 08:02:36 GMT 2025 - 7.9K bytes - Click Count (0)