Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testMultipleDecodeCalls (0.08 sec)

  1. src/test/java/jcifs/internal/smb2/ioctl/SrvRequestResumeKeyResponseTest.java

                assertEquals((byte) (i % 256), resumeKey[i], "Resume key byte " + i + " should match buffer");
            }
        }
    
        @Test
        @DisplayName("Test multiple decode calls on same instance")
        void testMultipleDecodeCalls() throws SMBProtocolDecodingException {
            // First decode
            byte[] buffer1 = new byte[28];
            Arrays.fill(buffer1, 0, 24, (byte) 0x11);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java

            assertSame(returnedGuid, secondGuid, "getServerGuid() returns the same array reference");
        }
    
        @Test
        @DisplayName("Test multiple decode calls on same instance")
        void testMultipleDecodeCalls() throws SMBProtocolDecodingException {
            // First decode
            byte[] buffer1 = new byte[50];
            SMBUtil.writeInt4(0x11111111, buffer1, 0);
            SMBUtil.writeInt2(0x1111, buffer1, 20);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java

            assertEquals(expectedFree, smbInfoAllocation.getFree());
        }
    
        @Test
        @DisplayName("Test multiple decode calls on same instance")
        void testMultipleDecodeCalls() throws SMBProtocolDecodingException {
            // First decode
            byte[] buffer1 = new byte[22];
            int offset = 0;
            SMBUtil.writeInt4(0, buffer1, offset); // idFileSystem
            offset += 4;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top