(I)
| 102 | |
| 103 | @pytest.mark.parametrize("I", test_data) |
| 104 | def test_nnmark(I): |
| 105 | ref = naive_nnmark(I) |
| 106 | comp = _nnmark(I) |
| 107 | npt.assert_almost_equal(ref, comp) |
| 108 | |
| 109 | |
| 110 | @pytest.mark.parametrize("I", test_data) |
nothing calls this directly
no test coverage detected