Selenium Python - Test Framework Integration (pytest)
What will be the result of running this parameterized test?
import pytest
@pytest.mark.parametrize('val', [0, 1])
def test_positive(val):
assert val >= 0
print('Test run complete')