(self)
| 368 | |
| 369 | class TestStrictDict(unittest.TestCase): |
| 370 | def setUp(self): |
| 371 | self.dtype = self.strict_dict_class(("a", "b", "c")) |
| 372 | |
| 373 | def strict_dict_class(self, *args, **kwargs): |
| 374 | return StrictDict.create(*args, **kwargs) |
nothing calls this directly
no test coverage detected