(self, content)
| 1577 | self.test_harness = test_harness |
| 1578 | |
| 1579 | def characters(self, content): |
| 1580 | if content != '\n': |
| 1581 | h = self.test_harness |
| 1582 | t = h.specified_chars[h.char_index] |
| 1583 | h.assertEqual(t[0], content) |
| 1584 | h.assertEqual(t[1], h.in_cdata) |
| 1585 | h.char_index += 1 |
| 1586 | |
| 1587 | self.parser = create_parser() |
| 1588 | self.parser.setContentHandler(TestCharHandler(self)) |
no test coverage detected