(self)
| 2915 | assert_(type(b) is not MyNDArray) |
| 2916 | |
| 2917 | def test_ones_like(self): |
| 2918 | self.check_like_function(np.ones_like, 1) |
| 2919 | |
| 2920 | def test_zeros_like(self): |
| 2921 | self.check_like_function(np.zeros_like, 0) |
nothing calls this directly
no test coverage detected