Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testReadBytesWireFormatNoop (0.63 sec)

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

            assertEquals(0, buffer[1], "Second byte must be null terminator for empty string");
        }
    
        @Test
        @DisplayName("readBytesWireFormat is a no‑op and returns zero")
        void testReadBytesWireFormatNoop() {
            byte[] buffer = new byte[10];
            int used = cmd.readBytesWireFormat(buffer, 0);
            assertEquals(0, used, "readBytesWireFormat is unimplemented and must return 0");
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top