- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 241 for tearDown (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
} @Override protected void tearDown(TestInfo testInfo) throws Exception { // Restore original java.version property if it exists String originalVersion = System.getProperty("java.version"); if (originalVersion != null) { System.setProperty("java.version", originalVersion); } super.tearDown(testInfo); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
@Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); facetInfo = new FacetInfo(); } @Override protected void tearDown(TestInfo testInfo) throws Exception { super.tearDown(testInfo); } // Test default constructor @Test public void test_constructor() { FacetInfo info = new FacetInfo(); assertNull(info.field);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
return currentSsoType; } }; testAuthenticator = new TestSsoAuthenticator(); } @Override protected void tearDown(TestInfo testInfo) throws Exception { currentSsoType = Constants.NONE; super.tearDown(testInfo); } // Test available() method @Test public void test_available_withNoneSsoType() { currentSsoType = Constants.NONE;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java
sleeper = new SleepingRunnable(1000); delayedFuture = executor.submit(sleeper, true); tearDownStack.addTearDown(() -> Thread.interrupted()); } @Override protected void tearDown() { tearDownStack.runTearDown(); } /** * This first test doesn't test anything in Uninterruptibles, just demonstrates some normal * behavior of futures so that you can contrast the next test with it.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
} }; ComponentUtil.register(systemHelper, "systemHelper"); } @Override protected void tearDown(TestInfo testInfo) throws Exception { super.tearDown(testInfo); } // Test append method with null value @Test public void test_append_nullValue() { StringBuilder buf = new StringBuilder();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java
* @author higa */ public class DateConversionUtilTest { @Before public void setUp() throws Exception { LocaleUtil.setDefault(() -> Locale.JAPANESE); } @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test public void testToDate_Null() throws Exception {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
protocolHelper.init(); ComponentUtil.register(protocolHelper, "protocolHelper"); } @Override protected void tearDown(TestInfo testInfo) throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(testInfo); } private String encodeUrl(final String url) { try { return URLEncoder.encode(url, Constants.UTF_8);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
ComponentUtil.register(searchEngineClient, "searchEngineClient"); ComponentUtil.setFessConfig(fessConfig); } @Override protected void tearDown(TestInfo testInfo) throws Exception { super.tearDown(testInfo); } @Test public void test_constructor() { // Test that constructor creates instance without error PurgeDocJob job = new PurgeDocJob();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/ConnectionPoolTest.kt
private val addressB = factory.newAddress("b") private val routeB1 = factory.newRoute(addressB) private val addressC = factory.newAddress("c") private val routeC1 = factory.newRoute(addressC) @AfterEach fun tearDown() { factory.close() peer.close() } @Test fun connectionsEvictedWhenIdleLongEnough() { val pool = factory.newConnectionPool() val c1 = factory.newConnection(pool, routeA1, 50L)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Oct 07 21:55:03 GMT 2025 - 8.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
super.setUp(testInfo); processHelper = new ProcessHelper(); } @Override protected void tearDown(TestInfo testInfo) throws Exception { // Clean up any running processes processHelper.destroy(); super.tearDown(testInfo); } @Test public void test_isProcessRunning_empty() { assertFalse(processHelper.isProcessRunning()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16K bytes - Click Count (0)