Testing Fundamentals - Non-Functional Testing
Given the following pseudo-code for a stress test:
What will be the output if the system response times are 200ms, 350ms, and 500ms respectively?
for users in range(1000, 1003):
simulate_users(users)
print(system_response_time())What will be the output if the system response times are 200ms, 350ms, and 500ms respectively?
