- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for Smb2CloseResponse (0.36 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
byte[] zeroFileId = new byte[16]; Smb2CloseResponse zeroIdResponse = new Smb2CloseResponse(mockConfig, zeroFileId, testFileName); assertArrayEquals(zeroFileId, zeroIdResponse.getFileId()); byte[] maxFileId = new byte[16]; Arrays.fill(maxFileId, (byte) 0xFF); Smb2CloseResponse maxIdResponse = new Smb2CloseResponse(mockConfig, maxFileId, testFileName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java
assertEquals(testFlags, storedFlags); } @Test @DisplayName("createResponse should return Smb2CloseResponse with correct parameters") void testCreateResponse() throws Exception { Smb2CloseResponse response = request.createResponse(mockContext, request); assertNotNull(response); // Verify response has correct config
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0)