| 1423 | } |
| 1424 | |
| 1425 | void AssertAllNotFinished(const std::vector<int>& future_indices) { |
| 1426 | const auto& futures = executor_->futures(); |
| 1427 | for (const auto fut_index : future_indices) { |
| 1428 | AssertNotFinished(futures[fut_index]); |
| 1429 | } |
| 1430 | } |
| 1431 | |
| 1432 | // Assert the given futures are *eventually* successful |
| 1433 | void AssertAllSuccessful(const std::vector<int>& future_indices) { |
nothing calls this directly
no test coverage detected