[core] fixed process' dup2
[ozulis.git] / src / moulette / test-factory.hh
blob880949454a2a8d0a23b7ddbe1ab5ac3b60482fb0
1 #ifndef MOULETTE_TEST_FACTORY_HH
2 # define MOULETTE_TEST_FACTORY_HH
4 # include <boost/filesystem.hpp>
6 namespace moulette
8 class Testable;
10 class TestFactory
12 public:
13 static Testable * loadTest(const boost::filesystem::path & path);
14 static Testable * create(const std::string & name);
18 #endif /* !MOULETTE_TEST_FACTORY_HH */