(self, *args, **kwargs)
| 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) |
| 375 | |
| 376 | def test_init(self): |
| 377 | d = self.dtype(a=1, b=1, c=1) |
no test coverage detected