diff --git a/tests/executables_src/testTestFacility2.cc b/tests/executables_src/testTestFacility2.cc index 3b1c514f16f2d88d17752852f19e551e9bebd67c..e5272b7fc4c2d914ee9ae50d6d649bddf3185d0c 100644 --- a/tests/executables_src/testTestFacility2.cc +++ b/tests/executables_src/testTestFacility2.cc @@ -14,11 +14,11 @@ namespace ctk = ChimeraTK; struct MyModule : public ctk::ApplicationModule { using ctk::ApplicationModule::ApplicationModule; - ctk::ScalarPushInput<double> input{this, "input", "", ""}; - ctk::ScalarOutput<double> output{this, "output", "", ""}; + ctk::ScalarPushInput<double> input{this, "/input", "", ""}; + ctk::ScalarOutput<double> output{this, "/output", "", ""}; void mainLoop() override { - std::cout << "startin main loop" << std::endl; + std::cout << "starting main loop" << std::endl; output = 2 * double(input); output.write(); @@ -36,10 +36,8 @@ struct TestApp : public ctk::Application { TestApp() : Application("TestApp") {} ~TestApp() override { shutdown(); } - // ctk::ControlSystemModule cs; MyModule myModule{this, "MyModule", ""}; - // void defineConnections() override { myModule.connectTo(cs); } }; /**********************************************************************************************************************/