Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testReadInt8 (0.04 sec)

  1. src/test/java/jcifs/internal/util/SMBUtilTest.java

            assertEquals(0xFFFFFFFF, SMBUtil.readInt4(src, 4));
            assertEquals(0x00000000, SMBUtil.readInt4(src, 8));
            assertEquals(0x89ABCDEF, SMBUtil.readInt4(src, 12));
        }
    
        @Test
        void testReadInt8() {
            byte[] src = new byte[] {
                    // 0x123456789ABCDEF0L
                    (byte) 0xF0, (byte) 0xDE, (byte) 0xBC, (byte) 0x9A, (byte) 0x78, (byte) 0x56, (byte) 0x34, (byte) 0x12,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.1K bytes
    - Viewed (0)
Back to top