Testing Fundamentals - Non-Functional Testing
Consider this simple security test code snippet in Python:
What will be the output when this code runs?
def test_password_length(password):
return len(password) >= 8
result = test_password_length('pass123')
print(result)What will be the output when this code runs?
