Complete the code to name the test file correctly for pytest.
File name should start with [1] to be recognized by pytest.
Pytest recognizes test files that start with test_.
Complete the code to name the test function correctly for pytest.
Test functions should start with [1] to be discovered by pytest.
Pytest discovers test functions that start with test_.
Fix the error in the test function name to make pytest recognize it.
def [1]_example(): assert 1 + 1 == 2
Test functions must start with test_ for pytest to find them.
Fill both blanks to write a correct pytest test function name and file name.
File: [1]example.py Function: def [2]_addition(): assert 2 + 2 == 4
Test files start with test_ and test functions start with test_. The function name here uses 'test' prefix without underscore because it's part of the function name.
Fill all three blanks to write a pytest test file and function with correct naming conventions and an assertion.
File: [1]math_ops.py def [2]_multiply(): result = 3 * 3 assert result [3] 9
The test file must start with test_. The test function must start with test_. The assertion checks equality with ==.