| 35 | |
| 36 | |
| 37 | TEST(FutureTest, Future) |
| 38 | { |
| 39 | Promise<bool> promise; |
| 40 | promise.set(true); |
| 41 | ASSERT_TRUE(promise.future().isReady()); |
| 42 | EXPECT_TRUE(promise.future().get()); |
| 43 | } |
| 44 | |
| 45 | |
| 46 | TEST(FutureTest, Stringify) |
nothing calls this directly
no test coverage detected