(self)
| 219 | self.assertEqual(obj, self.v1obj) |
| 220 | |
| 221 | def testSerializeV2(self): |
| 222 | obj = self._deserialize(VersioningTestV2, self._serialize(self.v2obj)) |
| 223 | self.assertEqual(obj, self.v2obj) |
| 224 | |
| 225 | def testBools(self): |
| 226 | self.assertNotEqual(self.bools, self.bools_flipped) |
nothing calls this directly
no test coverage detected