Framework Mode - Performance test planning
Folder Structure for Performance Test Planning Project
performance-testing-project/ ├── test-plans/ │ ├── load-test-plan.md │ ├── stress-test-plan.md │ └── endurance-test-plan.md ├── scripts/ │ ├── load-tests/ │ │ ├── login-load-test.jmx │ │ └── checkout-load-test.jmx │ ├── stress-tests/ │ │ └── api-stress-test.jmx │ └── endurance-tests/ │ └── long-run-test.jmx ├── reports/ │ ├── load-test-report-2024-06-01.html │ └── stress-test-report-2024-06-01.html ├── config/ │ ├── environments.yaml │ ├── users.yaml │ └── thresholds.yaml ├── utils/ │ └── data-generators.py └── README.md