| 153 | now = std::max(anow, bnow); |
| 154 | } |
| 155 | void process_timed_fail() { |
| 156 | timestamp anow = now + timeout + timeout + duration(100); |
| 157 | timestamp bnow = now + timeout + timeout + duration(100); |
| 158 | a.process(anow); |
| 159 | b.process(bnow); |
| 160 | now = std::max(anow, bnow); |
| 161 | } |
| 162 | }; |
| 163 | |
| 164 | /// A handler that records incoming endpoints, errors etc. |
no test coverage detected