User class that does requests to the locust web server running on localhost
| 20 | |
| 21 | |
| 22 | class WebsiteUser(HttpUser): |
| 23 | """ |
| 24 | User class that does requests to the locust web server running on localhost |
| 25 | """ |
| 26 | |
| 27 | host = "http://127.0.0.1:8089" |
| 28 | wait_time = between(2, 5) |
| 29 | tasks = [UserTasks] |
nothing calls this directly
no test coverage detected
searching dependent graphs…