Skip to content

Commit

Permalink
Temporary: Find failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
FAlbertDev committed Jan 11, 2024
1 parent 83b2249 commit d374f3a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/tests/tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <botan/types.h>
#include <functional>
#include <iosfwd>
#include <iostream>
#include <map>
#include <memory>
#include <optional>
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d374f3a

Please sign in to comment.