| 31 | }; |
| 32 | |
| 33 | TEST_F(StreamTest, NoInitNotOk) { |
| 34 | std::unique_ptr<StreamExecutor> executor = NewStreamExecutor(); |
| 35 | Stream stream(executor.get()); |
| 36 | EXPECT_FALSE(stream.ok()); |
| 37 | } |
| 38 | |
| 39 | TEST_F(StreamTest, InitOk) { |
| 40 | std::unique_ptr<StreamExecutor> executor = NewStreamExecutor(); |
nothing calls this directly
no test coverage detected