(self)
| 9414 | pass |
| 9415 | |
| 9416 | def test_cannot_init(self): |
| 9417 | with self.assertRaises(TypeError): |
| 9418 | Required() |
| 9419 | with self.assertRaises(TypeError): |
| 9420 | type(Required)() |
| 9421 | with self.assertRaises(TypeError): |
| 9422 | type(Required[Optional[int]])() |
| 9423 | |
| 9424 | def test_no_isinstance(self): |
| 9425 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected