Testing Fundamentals - Why Software Testing Matters
Given this Python test code snippet:
What will be the test result when run?
def test_addition():
result = 3 + 4
assert result == 7What will be the test result when run?
