(self, obj, type)
| 229 | self.assertNotEqual(obj, None) |
| 230 | |
| 231 | def assertIsInstance(self, obj, type): |
| 232 | self.assertTrue(isinstance(obj, type)) |
| 233 | |
| 234 | def assertGreater(self, a, b): |
| 235 | self.assertTrue(a > b) |
no outgoing calls
no test coverage detected