(function)
| 24 | |
| 25 | @pytest.mark.parametrize("function", [factorial, factorial_recursive]) |
| 26 | def test_large_number(function): |
| 27 | assert function(10) == 3628800 |
| 28 | |
| 29 | |
| 30 | @pytest.mark.parametrize("function", [factorial, factorial_recursive]) |
nothing calls this directly
no test coverage detected