(self)
| 372 | return BytesIO(b"This is a byte stream.") |
| 373 | |
| 374 | def make_character_stream(self): |
| 375 | return StringIO("This is a character stream.") |
| 376 | |
| 377 | def checkContent(self, stream, content): |
| 378 | self.assertIsNotNone(stream) |
no test coverage detected