Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testGetNtStatusVariousCodes (0.55 sec)

  1. src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java

         * - Positive values not in DOS_ERROR_CODES map to NT_STATUS_UNSUCCESSFUL
         */
        @ParameterizedTest
        @ValueSource(ints = { 0, 1, 123, -7 })
        void testGetNtStatusVariousCodes(int errcode) {
            SmbException ex = new SmbException(errcode, false);
            int expected;
            if (errcode == 0) {
                expected = 0;
            } else if ((errcode & 0xC0000000) != 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top