Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testSerialVersionUID (0.1 sec)

  1. 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)
  2. 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)
Back to top