(self)
| 240 | self.assertTrue(len(rep) > 0) |
| 241 | |
| 242 | def testNestedListsI32x2(self): |
| 243 | obj = self._deserialize(NestedListsI32x2, self._serialize(self.nested_lists_i32x2)) |
| 244 | self.assertEqual(obj, self.nested_lists_i32x2) |
| 245 | rep = repr(self.nested_lists_i32x2) |
| 246 | self.assertTrue(len(rep) > 0) |
| 247 | |
| 248 | def testNestedListsI32x3(self): |
| 249 | obj = self._deserialize(NestedListsI32x3, self._serialize(self.nested_lists_i32x3)) |
nothing calls this directly
no test coverage detected