(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) |
| 2922 | |
| 2923 | def test_empty_like(self): |
| 2924 | self.check_like_function(np.empty_like, None) |
nothing calls this directly
no test coverage detected