- Sort Score
- Num 10 results
- Language All
Results 271 - 280 of 707 for 1test (0.02 seconds)
-
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
ComponentUtil.register(new VirtualHostHelper(), "virtualHostHelper"); } @Test public void test_init() { try { keyMatchHelper.init(); } catch (Exception e) { // Expected due to missing dependencies in test environment assertNotNull(e); } } @Test public void test_getQueryMap_exists() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
// Mixed content array assertEquals(84L, MemoryUtil.sizeOf(new Object[] { "test", 123, null })); // Nested arrays assertEquals(120L, MemoryUtil.sizeOf(new Object[] { new String[] { "test" }, new String[] { "test" } })); } @Test public void test_sizeOf_collectionVariations() { // Empty collectionCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
assertEquals("test", getQuery("test", new String[0], Collections.emptyMap(), Collections.emptyMap(), false)); assertEquals("test", getQuery("test", new String[0], Collections.emptyMap(), Collections.emptyMap(), true)); // Test specific characters that should be escaped assertEquals("test\\/query", getQuery("test/query", new String[0], Collections.emptyMap(), Collections.emptyMap(), true));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
} } @Test public void test_addCondition() { // Test adding conditions generator = new TestThumbnailGenerator(); // Test adding single condition generator.addCondition("field1", "value1"); // Test adding multiple conditions for same field generator.addCondition("field1", "value2"); // Test adding conditions for different fieldsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java
boostQueryCommand.register(); } @Test public void test_getQueryClassName() { // Test that getQueryClassName returns the correct class name assertEquals("BoostQuery", boostQueryCommand.getQueryClassName()); } @Test public void test_execute_withTermQuery() { // Test executing BoostQuery with a TermQuery inside Term term = new Term("field", "value");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java
// ==================== @Test public void test_isValidUploadPath_validPath() throws Exception { // Create test directory structure File baseDir = new File(tempDir.toFile(), "images"); baseDir.mkdirs(); File validFile = new File(baseDir, "test.png"); Boolean result = invokeIsValidUploadPath(validFile, baseDir);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
tags = PrunedTag.parse("a#test-a"); assertEquals(1, tags.length); assertEquals("PrunedTag [tag=a, id=test-a, css=null, attrName=null, attrValue=null]", tags[0].toString()); tags = PrunedTag.parse("a.test-a"); assertEquals(1, tags.length); assertEquals("PrunedTag [tag=a, id=null, css=test-a, attrName=null, attrValue=null]", tags[0].toString()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
} @Test public void test_serialVersionUID() { // Test that serialVersionUID is defined (by checking serializability) DictionaryException exception = new DictionaryException("Serialization test"); assertTrue(exception instanceof java.io.Serializable); } @Test public void test_toString() { // Test toString methodCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_edit.jsp
</la:link></li> <c:if test="${crudMode == 1}"> <li class="breadcrumb-item active"><la:message key="labels.dict_stopwords_link_create"/></li> </c:if> <c:if test="${crudMode == 2}"> <li class="breadcrumb-item active"><la:messageCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
return true; } @Test public void test_setFessConfig_null() { assertTrue(FessProp.propMap.isEmpty()); } @Test public void test_setFessConfig_notNull() { FessConfig mockConfig = new FessConfig.SimpleImpl(); ComponentUtil.setFessConfig(mockConfig); assertSame(mockConfig, ComponentUtil.getFessConfig()); } @Test public void test_getFessConfig_cached() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0)