Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCanReuseWithoutForceSigning (0.09 sec)

  1. src/test/java/jcifs/internal/SmbNegotiationResponseTest.java

            assertFalse(result);
            verify(negotiationResponse).canReuse(cifsContext, true);
        }
    
        @Test
        @DisplayName("Test canReuse returns true without force signing")
        void testCanReuseWithoutForceSigning() {
            // Arrange
            when(negotiationResponse.canReuse(cifsContext, false)).thenReturn(true);
    
            // Act
            boolean result = negotiationResponse.canReuse(cifsContext, false);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top