PyTest - Test Organization
Given the code below, what will pytest report when running these tests?
class TestMath:
def test_add(self):
assert 1 + 1 == 2
def test_subtract(self):
assert 5 - 3 == 1
