Skip to content
Snippets Groups Projects
Commit 84a5e16b authored by Martin Killenberg's avatar Martin Killenberg
Browse files

fixed: test for VariableMapper was in the wrong directory, not even compiling

parent f0f4aa97
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,11 @@
#include <boost/test/included/unit_test.hpp>
//#include <boost/test/test_case_template.hpp>
#include "VariableMapper.h"
using namespace ChimeraTK;
BOOST_AUTO_TEST_CASE( testCreation ){
VariableMapper & vm = VariableMapper::getInstance();
VariableMapper & vm2 = VariableMapper::getInstance();
BOOST_CHECK( &vm == &vm2 );
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment