test: add namespace for test helpers
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
|
||||
namespace helpers {
|
||||
|
||||
class ScopedFile {
|
||||
public:
|
||||
explicit ScopedFile(std::string fileName) : fileName_(std::move(fileName)) {}
|
||||
@@ -25,3 +27,5 @@ public:
|
||||
private:
|
||||
std::string fileName_;
|
||||
};
|
||||
|
||||
} // namespace helpers
|
||||
|
||||
Reference in New Issue
Block a user