- Sort Score
- Result 10 results
- Languages All
Results 741 - 750 of 2,907 for 2test (0.03 sec)
-
src/test/java/org/codelibs/fess/util/ErrorToWarnRewritePolicyTest.java
String[] loggerNames = { "test.logger" }; ErrorToWarnRewritePolicy policy = new ErrorToWarnRewritePolicy(loggerNames); LogEvent event = Log4jLogEvent.newBuilder() .setLoggerName("test.logger") .setLevel(Level.ERROR) .setMessage(new SimpleMessage("test message")) .setLoggerFqcn("test.class") .setThreadName("test-thread")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
} public void test_getInputValue() { // Test getInputValue method with non-null input ProtwordsItem item1 = new ProtwordsItem(1, "word"); assertEquals("word", item1.getInputValue()); // Test with empty string ProtwordsItem item2 = new ProtwordsItem(2, ""); assertEquals("", item2.getInputValue()); // Test with null input - should return empty stringRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionSerializationEqualTester.java
import org.junit.Ignore; /** * Basic reserialization test for collection types that must preserve {@code equals()} behavior when * reserialized. (Sets and Lists, but not bare Collections.) * * @author Louis Wasserman */ @GwtCompatible @Ignore("test runners must not instantiate and run this directly, only via suites we build") // @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
import java.io.InputStream; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension; /** * Test class for SocketInputStream using JUnit 5 and Mockito.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
assertEquals(21, ftpInfo.getPort()); assertEquals("/", ftpInfo.getParent()); assertEquals("test.txt", ftpInfo.getName()); value = "ftp://123.123.123.123/aaa/../test.txt"; ftpInfo = new FtpClient.FtpInfo(value, Constants.UTF_8); assertEquals("ftp://123.123.123.123/test.txt", ftpInfo.toUrl()); assertEquals("123.123.123.123:21", ftpInfo.getCacheKey());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 18K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
} @Test public void testInitNormal() throws IOException { // Test normal initialization converter.init(); assertTrue(testConverter.isInitialized()); } @Test public void testInitMultipleTimes() throws IOException { // Test multiple initialization calls converter.init(); assertTrue(testConverter.isInitialized());Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveAllTester.java
expectUnchanged(); assertTrue(collection.contains(e0())); } /* * AbstractCollection fails the removeAll(null) test when the subject * collection is empty, but we'd still like to test removeAll(null) when we * can. We split the test into empty and non-empty cases. This allows us to * suppress only the former. */ @CollectionFeature.Require(SUPPORTS_REMOVE)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
assertTrue(lockRequest instanceof RequestWithFileId); } @Test @DisplayName("Should initialize with SMB2_LOCK command") void testCommandInitialization() { Smb2LockRequest lockRequest = new Smb2LockRequest(mockConfig, testFileId, testLocks); assertNotNull(lockRequest); } @Test @DisplayName("Should accept null file ID in constructor")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/IssueReproductionTest.java
* limitations under the License. */ package okhttp.regression; import androidx.test.ext.junit.runners.AndroidJUnit4; import okhttp3.OkHttpClient; import okhttp3.Protocol; import okhttp3.Request; import okhttp3.Response; import org.junit.Test; import org.junit.runner.RunWith; import java.io.IOException; import java.security.cert.Certificate;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 26 06:37:08 UTC 2021 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
super.setUp(); thumbnailJob = new GenerateThumbnailJob(); // Create temporary directory tempDir = Files.createTempDirectory("test").toFile(); tempDir.deleteOnExit(); // Setup test components testProcessHelper = new TestProcessHelper(); ComponentUtil.register(testProcessHelper, "processHelper"); testSystemHelper = new TestSystemHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0)