- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 878 for Verify (0.04 sec)
-
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
Exception level1 = new Exception("Level 1: Authentication service error", level2); SsoProcessException topLevel = new SsoProcessException("SSO process failed", level1); // Verify the chain assertEquals("SSO process failed", topLevel.getMessage()); assertEquals(level1, topLevel.getCause()); assertEquals("Level 1: Authentication service error", topLevel.getCause().getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
} } public void test_class_isFinal() { // Verify that KuromojiCSVUtil is a final class assertTrue("KuromojiCSVUtil should be final class", java.lang.reflect.Modifier.isFinal(KuromojiCSVUtil.class.getModifiers())); } public void test_static_method_signatures() { // Verify all public static methods exist with correct signatures try { // parse(String)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
// Since echo command completes quickly, processes might already be finished // So we just verify that processes were created without errors Set<String> sessionIds = processHelper.getRunningSessionIdSet(); // Since echo commands complete quickly, we may not catch them running // Just verify no exceptions occurred // Clean up processHelper.destroyProcess(sessionId1);
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/bytes/reader_test.go
if fmt.Sprintf("%v", err) != fmt.Sprintf("%v", tt.wanterr) { t.Errorf("%d. got error = %v; want %v", i, err, tt.wanterr) } } } func TestReaderAtConcurrent(t *testing.T) { // Test for the race detector, to verify ReadAt doesn't mutate // any state. r := NewReader([]byte("0123456789")) var wg sync.WaitGroup for i := 0; i < 5; i++ { wg.Add(1) go func(i int) { defer wg.Done() var buf [1]byte
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Dec 13 18:45:54 UTC 2021 - 8K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
// Set the DFS referral mock loc.setDfsReferral(dfs); // Verify we can retrieve it DfsReferralData received = loc.getDfsReferral(); assertSame(dfs, received); // Verify that the URL returned by getURL works with SMB handler URL returned = loc.getURL(); if (returned != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
public void test_FilePurgeVisitor_visitFileFailed() throws IOException { // Test that visitFileFailed doesn't throw exception // This is primarily a logging method, so we just verify no exception assertTrue(true); } // Test FilePurgeVisitor postVisitDirectory public void test_FilePurgeVisitor_postVisitDirectory() throws IOException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbAuthExceptionTest.java
assertEquals(msg, ex.getMessage()); assertSame(mockCause, ex.getCause()); assertSame(mockCause, ex.getRootCause()); assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus()); // Verify: constructor should not have interacted with the cause Mockito.verifyNoInteractions(mockCause); } /** * Ensure toString includes the exception class name and message, providing a readable representation.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
.teamcity/jdks.yaml
# To verify the change, run the build with: # @bot-gradle test ReadyForNightly # ``` # stopGradleDaemons=true # ``` version: "v1" jdks: - params: - "linux.java8.openjdk.64bit" - "linux.java8.oracle.64bit" os: "linux" arch: "amd64" vendor: "oracle" version: "8u401" sha256: "19684fccd7ff32a8400e952a643f0049449a772ef63b8037d5b917cbd137d173" - params: - "linux.java11.openjdk.64bit"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Aug 05 16:58:51 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
} public void test_serialization() { // Test serialVersionUID is properly defined GsaConfigException exception = new GsaConfigException("Serialization test"); // Verify the exception is serializable (has serialVersionUID) assertNotNull(exception); // The serialVersionUID field exists and is accessible at compile time assertTrue(exception instanceof java.io.Serializable);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SynchronizedMapTest.java
} private static final long serialVersionUID = 0; } /* * This is somewhat of a weak test; we verify that all of the methods are * correct, but not that they're actually forwarding correctly. We also rely * on the other tests (e.g., SynchronizedSetTest) to verify that the * collection views are synchronized correctly. */ public void testSize() { int unused = create().size();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 28 19:11:14 UTC 2025 - 5.9K bytes - Viewed (0)