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"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class TestResourcesManager {
|
|
|
|
public:
|
|
|
|
static string getPuddleFilePath(const string & filename);
|
|
|
|
|
|
|
|
static string getTestConcordiaConfigFilePath(const string & filename);
|
|
|
|
|
2013-11-28 16:47:57 +01:00
|
|
|
static string getProdConcordiaConfigFilePath(const string & filename);
|
2013-11-14 20:36:34 +01:00
|
|
|
|
2013-11-28 16:47:57 +01:00
|
|
|
static string getTestFilePath(const string & module, const string & filename);
|
2013-11-14 20:36:34 +01:00
|
|
|
|
2013-10-24 17:06:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|