| 14 | class MessageThreadTest : public ::testing::Test { |
| 15 | protected: |
| 16 | void SetUp() override { |
| 17 | thread = std::make_unique<MessageThread>("TestThread"); |
| 18 | } |
| 19 | |
| 20 | void TearDown() override { |
| 21 | if (thread && thread->isRunning()) { |
nothing calls this directly
no outgoing calls
no test coverage detected