diff --git a/testing/include/gz/common/testing/CMakeTestPaths.hh b/testing/include/gz/common/testing/CMakeTestPaths.hh index 0ce2471a..501e24c0 100644 --- a/testing/include/gz/common/testing/CMakeTestPaths.hh +++ b/testing/include/gz/common/testing/CMakeTestPaths.hh @@ -31,7 +31,7 @@ namespace gz::common::testing class GZ_COMMON_TESTING_VISIBLE CMakeTestPaths: public TestPaths { /// \brief Constructor from TestPaths - public: using TestPaths::TestPaths; + public: CMakeTestPaths() = default; /// \brief Destructor public: ~CMakeTestPaths() override; diff --git a/testing/src/TestPaths.cc b/testing/src/TestPaths.cc index af6cd036..6e455124 100644 --- a/testing/src/TestPaths.cc +++ b/testing/src/TestPaths.cc @@ -27,6 +27,8 @@ namespace gz::common::testing TestPaths::TestPaths(const std::string &_projectSourcePath) : projectSourcePath(_projectSourcePath) { + std::cout << "TestPaths::TestPaths: (" + << _projectSourcePath << ")" << std::endl; } //////////////////////////////////////////////////