(self)
| 246 | self.assertTrue(len(rep) > 0) |
| 247 | |
| 248 | def testNestedListsI32x3(self): |
| 249 | obj = self._deserialize(NestedListsI32x3, self._serialize(self.nested_lists_i32x3)) |
| 250 | self.assertEqual(obj, self.nested_lists_i32x3) |
| 251 | rep = repr(self.nested_lists_i32x3) |
| 252 | self.assertTrue(len(rep) > 0) |
| 253 | |
| 254 | def testNestedMixedx2(self): |
| 255 | obj = self._deserialize(NestedMixedx2, self._serialize(self.nested_mixedx2)) |
nothing calls this directly
no test coverage detected