| 1012 | } |
| 1013 | |
| 1014 | void |
| 1015 | hstest_thread::set_timing(double time_spent) |
| 1016 | { |
| 1017 | response_min = std::min(response_min, time_spent); |
| 1018 | response_max = std::max(response_max, time_spent); |
| 1019 | response_sum += time_spent; |
| 1020 | if (op_success_count != 0) { |
| 1021 | response_avg = response_sum / op_success_count; |
| 1022 | } |
| 1023 | } |
| 1024 | |
| 1025 | void |
| 1026 | hstest_thread::test_11(int test_num) |
nothing calls this directly
no outgoing calls
no test coverage detected