Testing Fundamentals - Testing Models and Approaches
Consider this code snippet representing a test strategy selection:
What will be the output?
approach = 'risk-based'
if approach == 'risk-based':
tests = ['critical features', 'security']
else:
tests = ['all features']
print(tests)What will be the output?
