MCPcopy Create free account
hub / github.com/comaps/comaps / TmpDir

Class TmpDir

generator/address_parser/address_parser_tests/parser_tests.cpp:67–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

TmpPathForFileMethod · 0.85
TmpPathForFileMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected