(self)
| 364 | return BytesIO(b"This is a byte stream.") |
| 365 | |
| 366 | def make_character_stream(self): |
| 367 | return StringIO("This is a character stream.") |
| 368 | |
| 369 | def checkContent(self, stream, content): |
| 370 | self.assertIsNotNone(stream) |
no test coverage detected