コード例 #1
0
 def test_field_short_short_uint(self):
     r = Reader(struct.pack('BB', 5, 255))
     assert_equals(5, r._field_short_short_uint())
     assert_equals(255, r._field_short_short_uint())
     assert_equals(2, r._pos)