| 22 | |
| 23 | struct AsyncLogStreamTest : public ::testing::Test { |
| 24 | virtual void SetUp() override { |
| 25 | file_object.fd = STDERR_FILENO; |
| 26 | ASSERT_EQ(0, appender.initialize()); |
| 27 | } |
| 28 | |
| 29 | StaticFileObject file_object; |
| 30 | AsyncFileAppender appender; |
nothing calls this directly
no test coverage detected