| 73 | } |
| 74 | |
| 75 | static void IsAliveTestThread(volatile const bool* stop) |
| 76 | { |
| 77 | while (!*stop) |
| 78 | ThisThread::Sleep(1); |
| 79 | // ThisThread::Exit(); |
| 80 | } |
| 81 | |
| 82 | TEST(Thread, IsAlive) |
| 83 | { |
nothing calls this directly
no outgoing calls
no test coverage detected