(self)
| 1975 | self.assertRaises(ValueError, writer.write_ucs4, NULL, -1) |
| 1976 | |
| 1977 | def test_substring_empty(self): |
| 1978 | writer = self.create_writer(0) |
| 1979 | writer.write_substring("abc", 1, 1) |
| 1980 | self.assertEqual(writer.finish(), '') |
| 1981 | |
| 1982 | |
| 1983 | @unittest.skipIf(ctypes is None, 'need ctypes') |
nothing calls this directly
no test coverage detected