(self)
| 91 | |
| 92 | @test_util.run_deprecated_v1 |
| 93 | def testEmpty(self): |
| 94 | for dtype in self.valid_dtypes: |
| 95 | x = np.zeros([0]).astype(dtype) |
| 96 | for axis in (-1, 0): |
| 97 | self._compareAll(x, axis) |
| 98 | |
| 99 | @test_util.run_deprecated_v1 |
| 100 | def testAxisType(self): |
nothing calls this directly
no test coverage detected