(self)
| 416 | self._test_int("long") |
| 417 | |
| 418 | def testUlong(self): |
| 419 | self._test_int("ulong") |
| 420 | self.assertRaises(AssertionError, ulong, -1) |
| 421 | |
| 422 | def testString(self): |
| 423 | self._test("string", "one", "two", "three", "this is a test", "") |
nothing calls this directly
no test coverage detected