(self)
| 641 | self.assertLazyAndEqual(expected, actual) |
| 642 | |
| 643 | def test_ufuncs(self): |
| 644 | u = self.eager_array |
| 645 | v = self.lazy_array |
| 646 | self.assertLazyAndAllClose(np.sin(u), np.sin(v)) |
| 647 | |
| 648 | def test_where_dispatching(self): |
| 649 | a = np.arange(10) |
nothing calls this directly
no test coverage detected