Complete the code to define the main goal of performance testing.
performance_goal = "Ensure the system can handle [1] users simultaneously without slowing down."
The goal is to specify a clear number of users, like 1000, to test system performance under load.
Complete the code to select the right metric for response time measurement.
response_time_metric = "[1]"
Response time is measured in milliseconds to capture how fast the system responds.
Fix the error in the test plan step to correctly identify the load type.
load_type = "[1]" # Type of load to simulate during the test
Stress testing is a type of performance test that pushes the system beyond normal limits.
Fill both blanks to define the test environment and tool used.
test_environment = "[1]" test_tool = "[2]"
Performance tests should run in a development environment using tools like JMeter.
Fill all three blanks to complete the performance test plan snippet.
test_plan = {
"users": [1],
"duration": "[2]",
"expected_response_time_ms": [3]
}The plan sets 500 users, a 30-minute duration, and expects response times under 200 ms.