Assert the given futures are successful *now
| 1461 | |
| 1462 | // Assert the given futures are successful *now* |
| 1463 | void AssertSpanSuccessfulNow(int start, int stop) { |
| 1464 | const auto& futures = executor_->futures(); |
| 1465 | for (int fut_index = start; fut_index < stop; ++fut_index) { |
| 1466 | ASSERT_TRUE(IsFutureFinished(futures[fut_index].state())); |
| 1467 | } |
| 1468 | } |
| 1469 | |
| 1470 | void AssertAllSuccessfulNow() { |
| 1471 | AssertSpanSuccessfulNow(0, static_cast<int>(executor_->futures().size())); |
nothing calls this directly
no test coverage detected