owlps/owlps-positioning/tests/testsetup.cc

20 lines
246 B
C++

#include "testsetup.hh"
// Create the global fixture
static TestSetUp testsetup ;
bool TestSetUp::setUpWorld(void)
{
TestUtil::set_up() ;
return true ;
}
bool TestSetUp::tearDownWorld(void)
{
TestUtil::tear_down() ;
return true ;
}