| 72 | std::string const & Get() const { return m_path; } |
| 73 | |
| 74 | TmpDir() |
| 75 | { |
| 76 | (void)Platform::RmDirRecursively(m_path); |
| 77 | TEST(Platform::MkDirChecked(m_path), ()); |
| 78 | } |
| 79 | ~TmpDir() { TEST(Platform::RmDirRecursively(m_path), ()); } |
| 80 | }; |
| 81 |
no test coverage detected