- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testBufferBoundaries (0.07 sec)
-
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
assertEquals(originalContext.size(), decodedContext.size()); } @Test @DisplayName("Should handle buffer boundaries correctly") void testBufferBoundaries() { // Arrange EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, new int[] { 1, 2 }); byte[] smallBuffer = new byte[100]; // Make buffer large enough
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
fail("Should handle large arrays: " + e.getMessage()); } } @Test @DisplayName("Should handle buffer boundaries correctly") void testBufferBoundaries() { byte[] smallBuffer = new byte[10]; int[] ciphers = { 1, 2 }; EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, ciphers);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0)