(self, expected, actual)
| 330 | self.assertLazyAnd(expected, actual, assert_identical) |
| 331 | |
| 332 | def assertLazyAndAllClose(self, expected, actual): |
| 333 | self.assertLazyAnd(expected, actual, assert_allclose) |
| 334 | |
| 335 | def assertLazyAndEqual(self, expected, actual): |
| 336 | self.assertLazyAnd(expected, actual, assert_equal) |
no test coverage detected