(self)
| 112 | self._compareAll(x, axis) |
| 113 | |
| 114 | def test2D(self): |
| 115 | for dtype in self.valid_dtypes: |
| 116 | x = np.arange(0, 10).reshape([2, 5]).astype(dtype) |
| 117 | for axis in (-2, -1, 0, 1): |
| 118 | self._compareAll(x, axis) |
| 119 | |
| 120 | def test3D(self): |
| 121 | for dtype in self.valid_dtypes: |
nothing calls this directly
no test coverage detected