(self)
| 1068 | ) |
| 1069 | |
| 1070 | def test_dict_materialization(self): |
| 1071 | c = C() |
| 1072 | c.a = 1 |
| 1073 | c.b = 2 |
| 1074 | c.__dict__ |
| 1075 | self.assertEqual(c.__dict__, {"a":1, "b": 2}) |
| 1076 | |
| 1077 | def test_dict_dematerialization(self): |
| 1078 | c = C() |
nothing calls this directly
no test coverage detected