(self)
| 106 | assert self.data.next() is None |
| 107 | |
| 108 | def test_strings(self): |
| 109 | self.decode_data_file("strings") |
| 110 | self.assert_next(Data.BINARY, b"abc\0defg") |
| 111 | self.assert_next(Data.STRING, "abcdefg") |
| 112 | self.assert_next(Data.SYMBOL, "abcdefg") |
| 113 | self.assert_next(Data.BINARY, b"") |
| 114 | self.assert_next(Data.STRING, "") |
| 115 | self.assert_next(Data.SYMBOL, "") |
| 116 | assert self.data.next() is None |
| 117 | |
| 118 | def test_described(self): |
| 119 | self.decode_data_file("described") |
nothing calls this directly
no test coverage detected