| 71 | |
| 72 | struct CoroutineTest : public ::testing::Test { |
| 73 | virtual void SetUp() override { |
| 74 | executor.set_worker_number(8); |
| 75 | executor.set_local_capacity(8); |
| 76 | executor.start(); |
| 77 | destroy_times = 0; |
| 78 | } |
| 79 | |
| 80 | static void assert_in_executor(Executor& executor) { |
| 81 | if (!executor.is_running_in()) { |
nothing calls this directly
no test coverage detected