PyTest - Basics and Setup
Given this pytest code, what will be the output?
import pytest
@pytest.mark.parametrize('x, y, expected', [(1, 2, 3), (2, 3, 5), (3, 5, 9)])
def test_add(x, y, expected):
assert x + y == expected