owlps/owlps-positioner/tests/testsetup.cc

22 lines
327 B
C++

#include "testsetup.hh"
// Create the global fixture
static TestSetUp testsetup ;
// This is called before each test suite
bool TestSetUp::setUpWorld(void)
{
TestUtil::set_up() ;
return true ;
}
// This is called after each test suite
bool TestSetUp::tearDownWorld(void)
{
TestUtil::tear_down() ;
return true ;
}