In pytest, what is the effect of including a fixture name as a parameter in a test function?
Apytest automatically injects the fixture's return value into the test function
BThe fixture is ignored unless explicitly called inside the test
CThe test function will fail unless the fixture is decorated with @pytest.mark.usefixtures
DThe fixture runs only if the test function calls it explicitly