(data: bytearray)
| 72 | |
| 73 | @staticmethod |
| 74 | def __to_uint(data: bytearray) -> int: |
| 75 | return int.from_bytes(data, 'little', signed=False) |
| 76 | |
| 77 | def test_load_from(self): |
| 78 | dummy = DummyStruct.load_from(self.mem, self.ptr) |
no outgoing calls
no test coverage detected