(self)
| 785 | self.writerAssertEqual([], '') |
| 786 | |
| 787 | def test_single_writer(self): |
| 788 | self.writerAssertEqual([['abc']], 'abc\r\n') |
| 789 | |
| 790 | def test_simple_writer(self): |
| 791 | self.writerAssertEqual([[1, 2, 'abc', 3, 4]], '1,2,abc,3,4\r\n') |
nothing calls this directly
no test coverage detected