Testing Fundamentals - Non-Functional Testing
Consider this pseudo-code for a stress test:
What is the main purpose of increasing users from 1000 to 1099 in this test?
for users in range(1000, 1100):
simulate_login(users)
simulate_data_request(users)
check_response_time(users)What is the main purpose of increasing users from 1000 to 1099 in this test?
