2013-10-24 17:06:00 +02:00
|
|
|
#ifndef TEST_RESOURCES_MANAGER_HDR
|
|
|
|
#define TEST_RESOURCES_MANAGER_HDR
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "concordia/common/config.hpp"
|
|
|
|
|
|
|
|
class TestResourcesManager {
|
|
|
|
public:
|
2015-04-15 14:14:10 +02:00
|
|
|
static std::string getPuddleFilePath(const std::string & filename);
|
2013-10-24 17:06:00 +02:00
|
|
|
|
2015-04-15 14:14:10 +02:00
|
|
|
static std::string getTestConcordiaConfigFilePath(const std::string & filename);
|
2013-10-24 17:06:00 +02:00
|
|
|
|
2015-04-15 14:14:10 +02:00
|
|
|
static std::string getProdConcordiaConfigFilePath(const std::string & filename);
|
2013-11-14 20:36:34 +01:00
|
|
|
|
2015-04-15 14:14:10 +02:00
|
|
|
static std::string getTestFilePath(const std::string & module, const std::string & filename);
|
2013-11-14 20:36:34 +01:00
|
|
|
|
2015-10-16 22:14:11 +02:00
|
|
|
static std::string getTempPath();
|
2013-10-24 17:06:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|