| 34 | } |
| 35 | |
| 36 | TEST(TestReporter, NoLogging) { |
| 37 | TestReporter test_reporter("b1"); |
| 38 | TF_EXPECT_OK(test_reporter.Initialize()); |
| 39 | TF_EXPECT_OK(test_reporter.Close()); |
| 40 | } |
| 41 | |
| 42 | TEST(TestReporter, UsesEnv) { |
| 43 | const char* old_env = std::getenv(TestReporter::kTestReporterEnv); |
nothing calls this directly
no test coverage detected