(self)
| 161 | |
| 162 | @silence_warnings |
| 163 | def test_round_trip_full(self): |
| 164 | # Don't run this test on the base class |
| 165 | if type(self) is EntityTestCase: |
| 166 | return |
| 167 | |
| 168 | ent = self.klass.from_dict(self._full_dict) |
| 169 | ent2 = round_trip(ent, output=True) |
| 170 | |
| 171 | @silence_warnings |
| 172 | def _test_round_trip_dict(self, input): |
nothing calls this directly
no test coverage detected