(self)
| 196 | self._compareAll(x, axis) |
| 197 | |
| 198 | def test3D(self): |
| 199 | for dtype in self.valid_dtypes: |
| 200 | x = np.arange(1, 21).reshape([2, 2, 5]).astype(dtype) |
| 201 | for axis in (-3, -2, -1, 0, 1, 2): |
| 202 | self._compareAll(x, axis) |
| 203 | |
| 204 | def test6D(self): |
| 205 | for dtype in self.valid_dtypes: |
nothing calls this directly
no test coverage detected