| 23 | class StreamTest : public ::testing::Test { |
| 24 | protected: |
| 25 | std::unique_ptr<StreamExecutor> NewStreamExecutor() { |
| 26 | Platform* platform = |
| 27 | MultiPlatformManager::PlatformWithName("Host").ConsumeValueOrDie(); |
| 28 | StreamExecutorConfig config(/*ordinal=*/0); |
| 29 | return platform->GetUncachedExecutor(config).ConsumeValueOrDie(); |
| 30 | } |
| 31 | }; |
| 32 | |
| 33 | TEST_F(StreamTest, NoInitNotOk) { |
nothing calls this directly
no test coverage detected