(self)
| 3380 | self.check_function(np.empty) |
| 3381 | |
| 3382 | def test_full(self): |
| 3383 | self.check_function(np.full, 0) |
| 3384 | self.check_function(np.full, 1) |
| 3385 | |
| 3386 | @pytest.mark.skipif(not HAS_REFCOUNT, reason="Python lacks refcounts") |
| 3387 | def test_for_reference_leak(self): |
nothing calls this directly
no test coverage detected