- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 209 for teardown (0.05 sec)
-
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
public void setUp() throws Exception { super.setUp(); processHelper = new ProcessHelper(); } @Override public void tearDown() throws Exception { // Clean up any running processes processHelper.destroy(); super.tearDown(); } public void test_isProcessRunning_empty() { assertFalse(processHelper.isProcessRunning()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
@Override public void setUp() throws Exception { super.setUp(); crawlerEngineClient = new CrawlerEngineClient(); } @Override public void tearDown() throws Exception { crawlerEngineClient = null; super.tearDown(); } // Test constructor public void test_constructor() { // Test that constructor creates a non-null instance assertNotNull(crawlerEngineClient);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ListenableFutureTaskTest.java
public void run() { listenerLatch.countDown(); } }, directExecutor()); } @Override protected void tearDown() throws Exception { if (exec != null) { exec.shutdown(); } super.tearDown(); } public void testListenerDoesNotRunUntilTaskCompletes() throws Exception { // Test default state of not started.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 4.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/outside/AbstractEventBusTest.java
protected void setUp() throws Exception { subscriber = createSubscriber(); EventBus bus = new EventBus(); bus.register(subscriber); bus.post(EVENT); } @Override protected void tearDown() throws Exception { subscriber = null; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/message/MessageFormatterTest.java
/** * @author higa */ public class MessageFormatterTest { @Before public void setUp() throws Exception { LocaleUtil.setDefault(() -> Locale.JAPANESE); } @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test public void testGetMessage() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
ComponentUtil.register(scriptEngineFactory, "scriptEngineFactory"); testScriptEngine = new TestScriptEngine(); } @Override public void tearDown() throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(); } // Test default constructor public void test_constructor() { assertNotNull(testScriptEngine); } // Test register method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java
originalFessConfig = ComponentUtil.getFessConfig(); } @Override public void tearDown() throws Exception { if (originalFessConfig != null) { ComponentUtil.setFessConfig(originalFessConfig); } super.tearDown(); } // Test basic initialization public void test_hookInitialization() { assertNotNull(apiFailureHook); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
provider = new FessUserTimeZoneProcessProvider(); requestManager = createMockRequestManager(); } @Override public void tearDown() throws Exception { provider = null; requestManager = null; super.tearDown(); } // Test isUseTimeZoneHandling() method public void test_isUseTimeZoneHandling() { // Verify that time zone handling is disabled
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java
* part, so higher integers would appear (in this case linearly) more often * than lower ones. */ return (int) Math.pow(a, 1.0 / concentration); } @AfterExperiment void tearDown() { double req = requests.get(); double hit = req - misses.get(); // Currently, this is going into /dev/null, but I'll fix that System.out.println("hit rate: " + hit / req); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
// Register components ComponentUtil.register(searchEngineClient, "searchEngineClient"); ComponentUtil.setFessConfig(fessConfig); } @Override public void tearDown() throws Exception { super.tearDown(); } public void test_constructor() { // Test that constructor creates instance without error PurgeDocJob job = new PurgeDocJob(); assertNotNull(job); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0)