Ejemplo n.º 1
0
def testDecodeUint32_0():
    assert types.A_Uint32("<").decode((0xa6, 0x37, 0x98, 0xcb)) == 3415750566
Ejemplo n.º 2
0
 def testEncodeUint32_0(self):
     self.assertEqual(
         types.A_Uint32("<").encode(3415750566), b'\xa67\x98\xcb')
Ejemplo n.º 3
0
def testEncodeUint32_0():
    assert types.A_Uint32("<").encode(3415750566) == b'\xa67\x98\xcb'
Ejemplo n.º 4
0
 def testDecodeUint32_0(self):
     self.assertEqual(
         types.A_Uint32("<").decode((0xa6, 0x37, 0x98, 0xcb)), 3415750566)