PyTest - Parametrize
Consider the following pytest code:
How many test cases will pytest execute?
@pytest.mark.parametrize('x', [10, 20])
@pytest.mark.parametrize('y', [1, 2, 3])
def test_multiply(x, y):
assert x * y > 0How many test cases will pytest execute?
