Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testReadParameterWordsReturnsZero (0.14 sec)

  1. src/test/java/jcifs/internal/smb1/com/SmbComFindClose2Test.java

            assertEquals(2, written);
            assertEquals((byte) (TEST_SID & 0xFF), dst[3]);
            assertEquals((byte) ((TEST_SID >> 8) & 0xFF), dst[4]);
        }
    
        @Test
        void testReadParameterWordsReturnsZero() {
            byte[] buffer = new byte[2];
            int rc = instance.readParameterWordsWireFormat(buffer, 0);
            assertEquals(0, rc, "readParameterWordsWireFormat should return 0 for this SMB");
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top