(self)
| 138 | self.check_file(TESTFN, self.nframes, self.frames) |
| 139 | |
| 140 | def test_write_bytearray(self): |
| 141 | f = self.create_file(TESTFN) |
| 142 | f.setnframes(self.nframes) |
| 143 | f.writeframes(bytearray(self.frames)) |
| 144 | f.close() |
| 145 | |
| 146 | self.check_file(TESTFN, self.nframes, self.frames) |
| 147 | |
| 148 | def test_write_array(self): |
| 149 | f = self.create_file(TESTFN) |
nothing calls this directly
no test coverage detected