Testing Fundamentals - Why Software Testing Matters
Analyze this test function:
What is the issue with this test code?
def test_access_element():
data = [1, 2, 3]
assert data[5] == 3What is the issue with this test code?
