(self)
| 9296 | pass |
| 9297 | |
| 9298 | def test_cannot_init(self): |
| 9299 | with self.assertRaises(TypeError): |
| 9300 | Required() |
| 9301 | with self.assertRaises(TypeError): |
| 9302 | type(Required)() |
| 9303 | with self.assertRaises(TypeError): |
| 9304 | type(Required[Optional[int]])() |
| 9305 | |
| 9306 | def test_no_isinstance(self): |
| 9307 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected