| 26 | |
| 27 | private: |
| 28 | inline void TestSystemPool() { |
| 29 | TRunAble r; |
| 30 | |
| 31 | { |
| 32 | THolder<IThreadFactory::IThread> thr = SystemThreadFactory()->Run(&r); |
| 33 | |
| 34 | thr->Join(); |
| 35 | } |
| 36 | |
| 37 | UNIT_ASSERT_EQUAL(r.done, true); |
| 38 | } |
| 39 | |
| 40 | inline void TestAdaptivePool() { |
| 41 | TRunAble r; |
nothing calls this directly
no test coverage detected