| 93 | class TestFileOutputStream : public FileTestFixture { |
| 94 | public: |
| 95 | void OpenFile(bool append = false) { |
| 96 | ASSERT_OK_AND_ASSIGN(file_, FileOutputStream::Open(path_, append)); |
| 97 | } |
| 98 | |
| 99 | void OpenFileDescriptor() { |
| 100 | ASSERT_OK_AND_ASSIGN(auto file_name, PlatformFilename::FromString(path_)); |
nothing calls this directly
no test coverage detected