- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for testConstructorWithEmptyFileId (0.88 sec)
-
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
assertDoesNotThrow(() -> new Smb2ReadRequest(mockConfig, null, outputBuffer, 0)); } @Test @DisplayName("Should accept empty file ID in constructor") void testConstructorWithEmptyFileId() { byte[] emptyFileId = new byte[16]; assertDoesNotThrow(() -> new Smb2ReadRequest(mockConfig, emptyFileId, outputBuffer, 0)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
assertDoesNotThrow(() -> new Smb2WriteRequest(mockConfig, null)); } @Test @DisplayName("Should accept empty file ID in constructor") void testConstructorWithEmptyFileId() { byte[] emptyFileId = new byte[16]; assertDoesNotThrow(() -> new Smb2WriteRequest(mockConfig, emptyFileId)); } } @Nested @DisplayName("FileId Tests")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
assertDoesNotThrow(() -> new Smb2LockRequest(mockConfig, null, testLocks)); } @Test @DisplayName("Should accept empty file ID in constructor") void testConstructorWithEmptyFileId() { byte[] emptyFileId = new byte[16]; assertDoesNotThrow(() -> new Smb2LockRequest(mockConfig, emptyFileId, testLocks)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0)