| 894 | ~TestDispatchQueue() override = default; |
| 895 | |
| 896 | void sync(const DispatchFunction& function) final { |
| 897 | function(); |
| 898 | } |
| 899 | |
| 900 | void async(DispatchFunction function) final { |
| 901 | _tasks.emplace_back(std::move(function)); |
no outgoing calls
no test coverage detected