コード例 #1
0
 def test_field_long_long_uint(self):
     r = Reader(struct.pack('>Q', 2 ** 64 - 1))
     assert_equals(2 ** 64 - 1, r._field_long_long_uint())
     assert_equals(8, r._pos)