Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testExceptionHandling (0.55 sec)

  1. src/test/java/jcifs/smb/SimpleMemoryManagementTest.java

            assertFalse(session.isInUse(), "Session should not be in use after release");
        }
    
        /**
         * Test exception handling during cleanup
         */
        @Test
        @Timeout(5)
        public void testExceptionHandling() throws Exception {
            SmbSessionImpl session = new SmbSessionImpl(mockContext, "testhost", "testdomain", mockTransport);
    
            // Configure transport to throw exception on release
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            assertNull(delegatingConfig.getMaximumVersion(), "Should return null when delegate returns null");
        }
    
        @Test
        @DisplayName("Delegation should handle exceptions from delegate")
        void testExceptionHandling() {
            // Given
            RuntimeException testException = new RuntimeException("Test exception");
            when(mockDelegate.getResponseTimeout()).thenThrow(testException);
    
            // When & Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
Back to top