| 12 | class InternalThreadTest : public ::testing::Test {}; |
| 13 | |
| 14 | TEST_F(InternalThreadTest, TestStartAndExit) { |
| 15 | InternalThread thread; |
| 16 | EXPECT_FALSE(thread.is_started()); |
| 17 | thread.StartInternalThread(); |
| 18 | EXPECT_TRUE(thread.is_started()); |
| 19 | thread.StopInternalThread(); |
| 20 | EXPECT_FALSE(thread.is_started()); |
| 21 | } |
| 22 | |
| 23 | class TestThreadA : public InternalThread { |
| 24 | void InternalThreadEntry() { |
nothing calls this directly
no test coverage detected