(self)
| 26 | def test_setattr_cls_from_kwargs(): |
| 27 | class _test_cls: |
| 28 | def __init__(self): |
| 29 | self.a = 1 |
| 30 | self.b = 'hello' |
| 31 | |
| 32 | test_cls = _test_cls() |
| 33 | config = {'a': 3, 'b': 'change_hello', 'c': 5} |
nothing calls this directly
no outgoing calls
no test coverage detected