mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
34 lines
447 B
C++
34 lines
447 B
C++
|
#ifndef TEST_UTIL_HPP
|
||
|
#define TEST_UTIL_HPP
|
||
|
|
||
|
#include <util/fs.hpp>
|
||
|
|
||
|
namespace llarp
|
||
|
{
|
||
|
namespace test
|
||
|
{
|
||
|
std::string
|
||
|
randFilename();
|
||
|
|
||
|
struct FileGuard
|
||
|
{
|
||
|
const fs::path &p;
|
||
|
|
||
|
explicit FileGuard(const fs::path &_p) : p(_p)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
~FileGuard()
|
||
|
{
|
||
|
if(fs::exists(fs::status(p)))
|
||
|
{
|
||
|
fs::remove(p);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
} // namespace test
|
||
|
} // namespace llarp
|
||
|
|
||
|
#endif
|