34#include <boost/filesystem/operations.hpp>
35#include <boost/filesystem/path.hpp>
39 boost::filesystem::path path = boost::filesystem::current_path() /
".unittests";
40 if (!boost::filesystem::is_directory(path))
41 boost::filesystem::create_directory(path);
42 return (path / filename).string();
static std::string get_unittest_path(const std::string &filename)
Definition: unittests.h:37