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