| 16 | |
| 17 | Y_UNIT_TEST_SUITE(ExecRangeWithFutures){ |
| 18 | bool AllOf(const TVector<int>& vec, int value){ |
| 19 | return AllOf(vec, [value](int element) { return value == element; }); |
| 20 | } |
| 21 | |
| 22 | void AsyncRunAndWaitFuturesReady(int rangeSize, int threads) { |
| 23 | TLocalExecutor localExecutor; |
no outgoing calls
no test coverage detected