| 219 | |
| 220 | def test_start_event(self): |
| 221 | class MyUser(User): |
| 222 | wait_time = constant(2) |
| 223 | task_run_count = 0 |
| 224 | |
| 225 | @task |
| 226 | def my_task(self): |
| 227 | MyUser.task_run_count += 1 |
| 228 | |
| 229 | test_start_run = [0] |
| 230 |
nothing calls this directly
no test coverage detected
searching dependent graphs…