In COMP 110, when using pytest, what convention must the names of the test functions inside the test file follow in order to be discovered as test cases?
a) They must start with "test_"
b) They must end with "_test"
c) They must contain "test" in their name
d) They must be declared in a separate test class