- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 248 for tearDown (0.05 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/AddressTest.kt
import org.junit.jupiter.api.Test class AddressTest { private val factory = TestValueFactory().apply { uriHost = "example.com" uriPort = 80 } @AfterEach fun tearDown() { factory.close() } @Test fun equalsAndHashcode() { val a = factory.newAddress() val b = factory.newAddress() assertThat(b).isEqualTo(a) assertThat(b.hashCode()).isEqualTo(a.hashCode())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
testScriptEngine = new TestScriptEngine(); ComponentUtil.register(scriptEngineFactory, "scriptEngineFactory"); } @Override public void tearDown() throws Exception { ComponentUtil.register(null, "scriptEngineFactory"); super.tearDown(); } public void test_constructor() { // Test that constructor creates an instance ScriptExecutor executor = new ScriptExecutor();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java
@Override public void setUp() throws Exception { super.setUp(); ltrQueryRescorer = new LtrQueryRescorer(); } @Override public void tearDown() throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(); } public void test_constructor() { // Test that constructor works properly assertNotNull(new LtrQueryRescorer()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.5K 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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java
extractor.setUrl("http://127.0.0.1:" + port + "/"); extractor.init(); } @Override protected void tearDown() throws Exception { server.stop(); extractor.destroy(); super.tearDown(); } public void test_getText() throws Exception { final String testStr = "testdata"; final String content = ATTR_NAME + "," + testStr;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
@Override public void setUp() throws Exception { super.setUp(); thumbnailGenerator = new ThumbnailGenerator(); } @Override public void tearDown() throws Exception { super.tearDown(); } public void test_constructor() { // Test default constructor ThumbnailGenerator generator = new ThumbnailGenerator(); assertNotNull(generator); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java
jodExtractor.officeManager = LocalOfficeManager.builder().portNumbers(12002).build(); jodExtractor.init(); } @Override protected void tearDown() throws Exception { jodExtractor.destroy(); super.tearDown(); } public void test_getText_ooow() { InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test.odt");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
public void setUp() throws Exception { super.setUp(); provider = new FessUserLocaleProcessProvider(); } @Override public void tearDown() throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(); } // Test isAcceptCookieLocale method public void test_isAcceptCookieLocale() { // Always returns false as per implementation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/compare/ApacheHttpClientTest.kt
* * https://hc.apache.org/httpcomponents-client-5.0.x/index.html */ @RunWith(AndroidJUnit4::class) class ApacheHttpClientTest { private var httpClient = HttpClients.createDefault() @After fun tearDown() { httpClient.close() } @Test fun get() { val request = HttpGet("https://google.com/robots.txt") httpClient.execute(request).use { response -> assertEquals(200, response.code)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.5K bytes - Viewed (0)