6 #ifndef DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
7 #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
9 #include <doctest/doctest.h>
13 struct ConfigureLoggingFixture
15 ConfigureLoggingFixture()
25 TEST_CASE_FIXTURE(ConfigureLoggingFixture,
"LoggerTest")
29 struct StreamRedirector
32 StreamRedirector(std::ostream& stream, std::streambuf* newStreamBuffer)
34 , m_BackupBuffer(m_Stream.rdbuf(newStreamBuffer))
36 ~StreamRedirector() { m_Stream.rdbuf(m_BackupBuffer); }
39 std::ostream& m_Stream;
40 std::streambuf* m_BackupBuffer;
43 StreamRedirector redirect(std::cout, ss.rdbuf());
45 using namespace armnn;
59 CHECK(ss.str().find(
"Trace: My trace message; -2") != std::string::npos);
60 CHECK(ss.str().find(
"Debug: My debug message; -1") != std::string::npos);
61 CHECK(ss.str().find(
"Info: My info message; 0") != std::string::npos);
62 CHECK(ss.str().find(
"Warning: My warning message; 1") != std::string::npos);
63 CHECK(ss.str().find(
"Error: My error message; 2") != std::string::npos);
64 CHECK(ss.str().find(
"Fatal: My fatal message; 3") != std::string::npos);