Testing Fundamentals - Why Software Testing Matters
Consider this code snippet for a simple test:
def test_sum():
result = sum([1, 2, 3])
assert result == 6
print('Test passed')
What will be the output when this test runs?