| 269 | */ |
| 270 | |
| 271 | TEST_P(CoreTest, Constructor) |
| 272 | { |
| 273 | //Check if we have 0 coroutines and IO tasks running |
| 274 | EXPECT_EQ(0, (int)getDispatcher().size(IQueue::QueueType::Coro)); |
| 275 | EXPECT_EQ(0, (int)getDispatcher().size(IQueue::QueueType::IO)); |
| 276 | EXPECT_EQ(0, (int)getDispatcher().size()); |
| 277 | } |
| 278 | |
| 279 | TEST_P(CoreTest, CheckReturnValue) |
| 280 | { |
nothing calls this directly
no test coverage detected