Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            assertTrue(result);
            verify(negotiationResponse).canReuse(cifsContext, true);
        }
    
        @Test
        @DisplayName("Test canReuse returns false with force signing")
        void testCannotReuseWithForceSigning() {
            // Arrange
            when(negotiationResponse.canReuse(cifsContext, true)).thenReturn(false);
    
            // Act
            boolean result = negotiationResponse.canReuse(cifsContext, true);
    
    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