(self)
| 1227 | ) |
| 1228 | |
| 1229 | def test_dict_materialization(self): |
| 1230 | c = C() |
| 1231 | c.a = 1 |
| 1232 | c.b = 2 |
| 1233 | c.__dict__ |
| 1234 | self.assertEqual(c.__dict__, {"a":1, "b": 2}) |
| 1235 | |
| 1236 | def test_dict_dematerialization(self): |
| 1237 | c = C() |
nothing calls this directly
no test coverage detected