PyTest - Parametrize
What will be the output of the following test run count?
@pytest.mark.parametrize('x', [0, 1])
@pytest.mark.parametrize('y', [True, False])
@pytest.mark.parametrize('z', ['a', 'b'])
def test_example(x, y, z):
assert True