Testing Fundamentals - Functional Testing Techniques
A tester wrote this code to check boundary values:
What is the problem with this test regarding boundary coverage?
def test_boundary(x):
if x > 0 and x < 10:
return 'Inside'
else:
return 'Outside'
print(test_boundary(0))
print(test_boundary(10))What is the problem with this test regarding boundary coverage?
