| 65 | } |
| 66 | |
| 67 | class TmpDir |
| 68 | { |
| 69 | std::string const m_path = "./addrs"; |
| 70 | |
| 71 | public: |
| 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 | |
| 82 | UNIT_TEST(Processor_Smoke) |
| 83 | { |
no outgoing calls
no test coverage detected