(self)
| 118 | self._compareAll(x, axis) |
| 119 | |
| 120 | def test3D(self): |
| 121 | for dtype in self.valid_dtypes: |
| 122 | x = np.arange(0, 20).reshape([2, 2, 5]).astype(dtype) |
| 123 | for axis in (-3, -2, -1, 0, 1, 2): |
| 124 | self._compareAll(x, axis) |
| 125 | |
| 126 | def test6D(self): |
| 127 | for dtype in self.valid_dtypes: |
nothing calls this directly
no test coverage detected