Skip to content
Snippets Groups Projects
Commit 5106c47d authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

fixed a test using the wrong dmap file (why did this ever work???)

parent e84ba3cc
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ struct TestApplication : public ctk::Application {
BOOST_AUTO_TEST_CASE_TEMPLATE( testTwoScalarPollPushAccessors, T, test_types ) {
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
TestApplication<T> app;
app.dev("/MyModule/Variable") >> app.testModule.consumingPush;
......@@ -126,7 +126,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTwoFeeders, T, test_types ) {
BOOST_AUTO_TEST_CASE_TEMPLATE( testTooManyPollingConsumers, T, test_types ) {
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
TestApplication<T> app;
......@@ -146,7 +146,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testTooManyPollingConsumers, T, test_types ) {
BOOST_AUTO_TEST_CASE_TEMPLATE( testDifferentNrElements, T, test_types ) {
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
TestApplication<T> app;
......@@ -165,7 +165,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testDifferentNrElements, T, test_types ) {
BOOST_AUTO_TEST_CASE_TEMPLATE( testMergeNetworks, T, test_types ) {
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
TestApplication<T> app;
app.testModule.feedingPush >> app.testModule.consumingPush;
......@@ -185,7 +185,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( testMergeNetworks, T, test_types ) {
BOOST_AUTO_TEST_CASE_TEMPLATE( testConstantTrigger, T, test_types ) {
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("dummy.dmap");
ChimeraTK::BackendFactory::getInstance().setDMapFilePath("test.dmap");
TestApplication<T> app;
app.dev("/MyModule/Variable") [ ctk::VariableNetworkNode::makeConstant<int>(true) ] >> app.testModule.consumingPush;
......
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