Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testReadWithDifferentReservedValues (0.11 seconds)

  1. src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java

        }
    
        @DisplayName("Should handle structure with different reserved values")
        @ParameterizedTest
        @CsvSource({ "0, 0", "255, 255", "0, 65535", "100, 200" })
        void testReadWithDifferentReservedValues(int byte2, int byte3) throws SMBProtocolDecodingException {
            // Given
            byte[] buffer = new byte[256];
    
            // Write structure size (4)
            SMBUtil.writeInt2(4, buffer, 0);
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 05:31
    - 14.1K bytes
    - Click Count (0)
Back to Top