Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testReadBytesWireFormatNullBuffer (0.1 sec)

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

            assertEquals(0, response.readBytesWireFormat(buffer, 0), "Should read 0 bytes");
        }
    
        @Test
        @DisplayName("readBytesWireFormat with null buffer - returns zero")
        void testReadBytesWireFormatNullBuffer() throws SMBProtocolDecodingException {
            assertEquals(0, response.readBytesWireFormat(null, 0), "Should read 0 bytes");
        }
    
        /* ------------------------------------------------------------------ */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

                int result = request.readBytesWireFormat(buffer, 0);
                assertEquals(0, result);
            }
    
            @Test
            @DisplayName("Should return 0 with null buffer")
            void testReadBytesWireFormatNullBuffer() {
                int result = request.readBytesWireFormat(null, 0);
                assertEquals(0, result);
            }
        }
    
        @Nested
        @DisplayName("CreateResponse Tests")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

                int result = request.readBytesWireFormat(buffer, 0);
                assertEquals(0, result);
            }
    
            @Test
            @DisplayName("Should return 0 with null buffer")
            void testReadBytesWireFormatNullBuffer() {
                int result = request.readBytesWireFormat(null, 0);
                assertEquals(0, result);
            }
        }
    
        @Nested
        @DisplayName("CreateResponse Tests")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top