(function)
| 12 | |
| 13 | @pytest.mark.parametrize("function", [factorial, factorial_recursive]) |
| 14 | def test_zero(function): |
| 15 | assert function(0) == 1 |
| 16 | |
| 17 | |
| 18 | @pytest.mark.parametrize("function", [factorial, factorial_recursive]) |
nothing calls this directly
no test coverage detected