(self, stream, content)
| 375 | return StringIO("This is a character stream.") |
| 376 | |
| 377 | def checkContent(self, stream, content): |
| 378 | self.assertIsNotNone(stream) |
| 379 | self.assertEqual(stream.read(), content) |
| 380 | stream.close() |
| 381 | |
| 382 | |
| 383 | def test_character_stream(self): |
no test coverage detected