- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 511 for isSetup (0.04 sec)
-
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
private PurgeLogJob purgeLogJob; @Override public void setUp() throws Exception { super.setUp(); purgeLogJob = new PurgeLogJob(); } // Test all services execute successfully public void test_execute_allSuccess() { // Setup tracking variables final boolean[] deleteCrawlingInfoCalled = { false };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
import org.lastaflute.web.validation.VaMessenger; public class InvalidQueryExceptionTest extends UnitFessTestCase { public void test_constructor_withMessageCodeMessageAndCause() { // Setup final String message = "Invalid query syntax error"; final Exception cause = new RuntimeException("Query parsing failed");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
private TestSearchEngineClient searchEngineClient; private TestIngestFactory ingestFactory; private FessConfig.SimpleImpl fessConfig; @Override public void setUp() throws Exception { super.setUp(); // Clear cached components in ComponentUtil using reflection try { java.lang.reflect.Field systemHelperField = ComponentUtil.class.getDeclaredField("systemHelper");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java
return Collections.<Class<? extends AbstractTester>>singletonList(MyTester.class); } } public void testLifecycle() { boolean[] setUp = {false}; Runnable setUpRunnable = new Runnable() { @Override public void run() { setUp[0] = true; } }; boolean[] tearDown = {false}; Runnable tearDownRunnable = new Runnable() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 25 16:19:30 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java
import org.lastaflute.web.validation.VaMessenger; public class SsoMessageExceptionTest extends UnitFessTestCase { public void test_constructor_withMessageCodeMessageAndCause() { // Setup final String message = "Test SSO error message"; final Exception cause = new RuntimeException("Test cause");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
import java.util.function.Function; public class SsoAuthenticatorTest extends UnitFessTestCase { private TestSsoAuthenticator authenticator; @Override public void setUp() throws Exception { super.setUp(); authenticator = new TestSsoAuthenticator(); } // Mock LoginCredentialResolver for testing
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
RenderDataUtil.register(data, "dataConfigItems", dataConfigService.getDataConfigList(dataConfigPager)); registerHandlerNames(data); }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(dataConfigPager, form, op -> op.include("name", "handlerName", "description")); }); }); } private HtmlResponse asEditHtml() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/mail/CrawlerPostcardTest.java
*/ package org.codelibs.fess.mylasta.mail; import org.codelibs.fess.unit.UnitFessTestCase; public class CrawlerPostcardTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Basic test to verify test framework is working
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/BaseApiManagerTest.java
*/ package org.codelibs.fess.api; import org.codelibs.fess.unit.UnitFessTestCase; public class BaseApiManagerTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Basic test to verify test framework is working
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/processor/FessResponseProcessorTest.java
package org.codelibs.fess.crawler.processor; import org.codelibs.fess.unit.UnitFessTestCase; public class FessResponseProcessorTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Basic test to verify test framework is working
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0)