Testing Fundamentals - Why Software Testing Matters
A tester wrote this test script snippet:
What is the main problem with this test?
def test_divide():
result = 10 / 0
assert result == 0What is the main problem with this test?
