Testing Fundamentals - Why Software Testing Matters
Examine this test code:
What is the main issue with this test?
def test_divide():
result = divide(10, 0)
assert result == 0What is the main issue with this test?
