Testing Fundamentals - Why Software Testing Matters
What will be the output of this test code snippet if the function under test returns 5 instead of 10?
def test_value():
result = get_value()
assert result == 10