(self, obj)
| 226 | self.assertEqual(obj, None) |
| 227 | |
| 228 | def assertIsNotNone(self, obj): |
| 229 | self.assertNotEqual(obj, None) |
| 230 | |
| 231 | def assertIsInstance(self, obj, type): |
| 232 | self.assertTrue(isinstance(obj, type)) |
no outgoing calls
no test coverage detected