Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testAuthenticationFailureStatus (0.2 sec)

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

            assertTrue((status & (int) 0xC0000000L) == (int) 0xC0000000L);
        }
    
        @Test
        @DisplayName("Should handle authentication failure status")
        void testAuthenticationFailureStatus() {
            // Given
            int status = NtStatus.NT_STATUS_LOGON_FAILURE;
    
            // When/Then
            assertEquals((int) 0xC000006DL, status);
            // Should be an error status (0xC prefix)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top