(self, content)
| 1538 | self.test_harness = test_harness |
| 1539 | |
| 1540 | def characters(self, content): |
| 1541 | if content != '\n': |
| 1542 | h = self.test_harness |
| 1543 | t = h.specified_chars[h.char_index] |
| 1544 | h.assertEqual(t[0], content) |
| 1545 | h.assertEqual(t[1], h.in_cdata) |
| 1546 | h.char_index += 1 |
| 1547 | |
| 1548 | self.parser = create_parser() |
| 1549 | self.parser.setContentHandler(TestCharHandler(self)) |
no test coverage detected