(self, stream, content)
| 367 | return StringIO("This is a character stream.") |
| 368 | |
| 369 | def checkContent(self, stream, content): |
| 370 | self.assertIsNotNone(stream) |
| 371 | self.assertEqual(stream.read(), content) |
| 372 | stream.close() |
| 373 | |
| 374 | |
| 375 | def test_character_stream(self): |
no test coverage detected