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