(self)
| 223 | self.assertEqual(obj, self.v2obj) |
| 224 | |
| 225 | def testBools(self): |
| 226 | self.assertNotEqual(self.bools, self.bools_flipped) |
| 227 | self.assertNotEqual(self.bools, self.v1obj) |
| 228 | obj = self._deserialize(Bools, self._serialize(self.bools)) |
| 229 | self.assertEqual(obj, self.bools) |
| 230 | obj = self._deserialize(Bools, self._serialize(self.bools_flipped)) |
| 231 | self.assertEqual(obj, self.bools_flipped) |
| 232 | rep = repr(self.bools) |
| 233 | self.assertTrue(len(rep) > 0) |
| 234 | |
| 235 | def testLargeDeltas(self): |
| 236 | # test large field deltas (meaningful in CompactProto only) |
nothing calls this directly
no test coverage detected