- Sort Score
- Num 10 results
- Language All
Results 171 - 180 of 353 for stesti (0.07 seconds)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
assertProvideThrowsException("Test*Classification"); assertProvideThrowsException("Test(Classification)"); assertProvideThrowsException("Test[Classification]"); assertProvideThrowsException("Test{Classification}"); assertProvideThrowsException("Test|Classification"); assertProvideThrowsException("Test\\Classification"); assertProvideThrowsException("Test/Classification");
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) -
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/exception/ScriptEngineExceptionTest.java
// Verify the exception can be created and basic properties work assertNotNull(exception); assertEquals("Serialization test", exception.getMessage()); } @Test public void test_stackTrace() { // Test that stack trace is properly maintained String message = "Stack trace test";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
package org.codelibs.fess.opensearch.client; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class SearchEngineClientExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test constructor with message only String message = "Test error message"; SearchEngineClientException exception = new SearchEngineClientException(message);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
*/ package org.codelibs.fess.exception; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class LdapOperationExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test constructor with message only String message = "LDAP operation failed";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
// Test with deleted item (empty newInput) item.setNewInput(""); assertEquals("", item.toLineString()); // Test with item created with id=0 ProtwordsItem newItem = new ProtwordsItem(0, "newword"); assertEquals("newword", newItem.toLineString()); } @Test public void test_toLineString_withEmptyInput() { // Test toLineString with empty inputCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/common/admin/header.jsp
</a> </li> </ul> <ul class="navbar-nav ml-auto"> <c:if test="${eoled}"> <li class="nav-item" data-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />"> <a class="nav-link active" href="${eolLink}" target="_olh"><i class="fas fa-times-circle text-danger" aria-hidden="true"></i></a></li> </c:if> <c:if test="${developmentMode}">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 2.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
} @Test public void test_stackTrace() { // Test that stack trace is properly captured ThemeException exception = new ThemeException("Stack trace test"); assertNotNull(exception.getStackTrace()); assertTrue(exception.getStackTrace().length > 0); // Verify that this test method appears in the stack trace boolean foundTestMethod = false;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
private String testFieldMinOnly; // Test field with only maxKey @CustomSize(maxKey = "test.max.only") private String testFieldMaxOnly; // Test field with custom message @CustomSize(minKey = "test.min", maxKey = "test.max", message = "Custom error message") private String testFieldWithMessage; // Test field with groups @CustomSize(groups = { TestGroup.class })Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
import org.junit.jupiter.api.Test; public class FessUserTest extends UnitFessTestCase { @Test public void test_getName() { // Test with normal user name FessUser user = new TestFessUser("testuser", new String[] { "role1" }, new String[] { "group1" }, new String[] { "perm1" }); assertEquals("testuser", user.getName()); // Test with empty nameCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.2K bytes - Click Count (0)