Testing Fundamentals - Why Software Testing Matters
Consider this code snippet for a simple test check:
What will be the output when this test runs?
def test_sum():
result = 2 + 2
assert result == 4
print('Test passed')What will be the output when this test runs?
