/* * $Id$ * * [ Description ] * * Test Configuration */ #include #include #include "../SelfTest/SelfTest.h" #include "Configuration.h" using namespace std; using namespace morpheo; using namespace morpheo::selftest; using namespace morpheo::configuration; int main (void) { cout << "
: SelfTest of Configuration" << endl; /* cout << "
: Test[0] -> Configuration without a good file" << endl; Configuration config0 ("data/test0.xml"); */ cout << "
: Test[1] -> Parse the minimum file" << endl; Configuration config1 ("data/test.xml"); cout << "
: All Test passed with Success" << endl; return (EXIT_SUCCESS); }