- Sort Score
- Num 10 results
- Language All
Results 171 - 180 of 308 for teardown (0.16 seconds)
-
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/app/web/admin/wizard/AdminWizardActionTest.java
ComponentUtil.register(protocolHelper, "protocolHelper"); wizardAction = new TestableAdminWizardAction(); } @Override protected void tearDown(TestInfo testInfo) throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(testInfo); } // Test class to expose protected method for testing private static class TestableAdminWizardAction extends AdminWizardAction {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt
private var serverSocket: ServerSocket? = null @BeforeEach fun setUp() { executorService = Executors.newCachedThreadPool(threadFactory("HandshakeCertificatesTest")) } @AfterEach fun tearDown() { executorService.shutdown() serverSocket?.closeQuietly() } @Test fun clientAndServer() { platform.assumeNotConscrypt() platform.assumeNotBouncyCastle() val clientRoot =
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 08:16:15 GMT 2026 - 7.5K 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) -
guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java
Object testInstance = test.getDeclaredConstructor().newInstance(); test.getMethod("setUp").invoke(testInstance); test.getMethod(getName()).invoke(testInstance); test.getMethod("tearDown").invoke(testInstance); } finally { Thread.currentThread().setContextClassLoader(oldClassLoader); } } private void checkHelperVersion(ClassLoader classLoader, String expectedHelperClassName)
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 6.7K 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) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterServiceTest.java
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Wed Jan 14 23:48:16 GMT 2026 - 11.5K 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)