- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testDifferentBufferSizes (0.09 sec)
-
src/test/java/jcifs/internal/smb2/io/Smb2WriteResponseTest.java
assertEquals(0, response.getCommand()); } @Test @DisplayName("Should work with different buffer sizes") void testDifferentBufferSizes() throws SMBProtocolDecodingException { // Minimum size buffer byte[] minBuffer = new byte[20]; SMBUtil.writeInt2(17, minBuffer, 0); SMBUtil.writeInt2(0, minBuffer, 2);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java
assertEquals(allFilters, readFilter); assertEquals(0xFFF, readFilter); // All 12 bits set } @Test @DisplayName("Should handle different buffer sizes from configuration") void testDifferentBufferSizes() { // Given Configuration config = mock(Configuration.class); when(config.getNotifyBufferSize()).thenReturn(16384);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0)