(self)
| 86 | assert next_value == value, "Value mismatch: %s != %s" % (next_value, value) |
| 87 | |
| 88 | def test_message(self): |
| 89 | self.decode_message_file("message") |
| 90 | self.assert_next(Data.STRING, "hello") |
| 91 | assert self.data.next() is None |
| 92 | |
| 93 | def test_primitives(self): |
| 94 | self.decode_data_file("primitives") |
nothing calls this directly
no test coverage detected