(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) |
| 2925 | |
| 2926 | def test_filled_like(self): |
| 2927 | self.check_like_function(np.full_like, 0, True) |
nothing calls this directly
no test coverage detected