| 14 | using namespace std; |
| 15 | |
| 16 | UNIT_TEST(ThreadPoolDelayed_Smoke) |
| 17 | { |
| 18 | { |
| 19 | DelayedThreadPool thread; |
| 20 | } |
| 21 | |
| 22 | { |
| 23 | DelayedThreadPool thread; |
| 24 | TEST(thread.Shutdown(DelayedThreadPool::Exit::SkipPending), ()); |
| 25 | } |
| 26 | |
| 27 | { |
| 28 | DelayedThreadPool thread; |
| 29 | TEST(thread.Shutdown(DelayedThreadPool::Exit::ExecPending), ()); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | UNIT_TEST(ThreadPoolDelayed_SimpleSync) |
| 34 | { |