- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testSerialVersionUID (0.06 sec)
-
src/test/java/org/codelibs/curl/CurlExceptionTest.java
CurlException exception = new CurlException(message, null); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void testSerialVersionUID() { assertNotNull(CurlException.class.getDeclaredFields()); boolean hasSerialVersionUID = false; try { CurlException.class.getDeclaredField("serialVersionUID");
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportExceptionTest.java
assertEquals(expectedMessage, thrownWithBoth.getMessage()); assertEquals(cause, thrownWithBoth.getCause()); } @Test @DisplayName("Test serialization compatibility") public void testSerialVersionUID() { // Verify that the serialVersionUID is set TransportException exception = new TransportException(); // The exception should be serializable since it extends CIFSException
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0)