(self, expected, actual)
| 333 | self.assertLazyAnd(expected, actual, assert_allclose) |
| 334 | |
| 335 | def assertLazyAndEqual(self, expected, actual): |
| 336 | self.assertLazyAnd(expected, actual, assert_equal) |
| 337 | |
| 338 | @pytest.fixture(autouse=True) |
| 339 | def setUp(self): |
no test coverage detected