(self)
| 91 | self._compare(x, axis, exclusive, reverse) |
| 92 | |
| 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 | def testAxisType(self): |
| 100 | for dtype in self.valid_dtypes: |
nothing calls this directly
no test coverage detected