diff --git a/src/tests/tests.h b/src/tests/tests.h index ea7c0e5c7c0..e79071c2633 100644 --- a/src/tests/tests.h +++ b/src/tests/tests.h @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -200,7 +201,10 @@ class Test { */ class Result final { public: - explicit Result(std::string who) : m_who(std::move(who)), m_timestamp(std::chrono::system_clock::now()) {} + explicit Result(std::string who) : m_who(std::move(who)), m_timestamp(std::chrono::system_clock::now()) { + // TODO: Debug Only + std::cout << "[Starting test '" << m_who << "']" << std::endl; + } /** * This 'consolidation constructor' creates a single test result from