Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testReadNameTrnId (1.42 sec)

  1. src/test/java/jcifs/netbios/NameServicePacketTest.java

        @Test
        void testReadInt4() {
            byte[] src = { (byte) 0x12, (byte) 0x34, (byte) 0x56, (byte) 0x78 };
            assertEquals(0x12345678, NameServicePacket.readInt4(src, 0));
        }
    
        @Test
        void testReadNameTrnId() {
            byte[] src = { (byte) 0xAB, (byte) 0xCD };
            assertEquals(0xABCD, NameServicePacket.readNameTrnId(src, 0));
        }
    
        @Test
        void testConstructor() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.9K bytes
    - Viewed (0)
Back to top