(function)
| 29 | |
| 30 | @pytest.mark.parametrize("function", [factorial, factorial_recursive]) |
| 31 | def test_negative_number(function): |
| 32 | with pytest.raises(ValueError): |
| 33 | function(-3) |
| 34 | |
| 35 | |
| 36 | @pytest.mark.parametrize("function", [factorial, factorial_recursive]) |
nothing calls this directly
no test coverage detected