(self)
| 3974 | self.assertTrue(self.theclass.max > self.theclass.min) |
| 3975 | |
| 3976 | def test_pickling(self): |
| 3977 | args = 20, 59, 16, 64**2 |
| 3978 | orig = self.theclass(*args) |
| 3979 | for pickler, unpickler, proto in pickle_choices: |
| 3980 | green = pickler.dumps(orig, proto) |
| 3981 | derived = unpickler.loads(green) |
| 3982 | self.assertEqual(orig, derived) |
| 3983 | self.assertEqual(orig.__reduce__(), orig.__reduce_ex__(2)) |
| 3984 | |
| 3985 | def test_pickling_subclass_time(self): |
| 3986 | args = 20, 59, 16, 64**2 |
nothing calls this directly
no test coverage detected