cc7b38b3c1
- fix clang-tidy warnings in test cases
20 lines
404 B
C++
20 lines
404 B
C++
#include "testutils/LoggingTest.h"
|
|
|
|
/*
|
|
* Contains test cases for the Logger class
|
|
*/
|
|
|
|
using namespace cpputils::logging;
|
|
using std::string;
|
|
|
|
class LoggerTest: public LoggingTest {};
|
|
|
|
TEST_F(LoggerTest, IsSingleton) {
|
|
ASSERT_EQ(&logger(), &logger());
|
|
}
|
|
|
|
TEST_F(LoggerTest, SetLogger) {
|
|
logger().setLogger(spdlog::stderr_logger_mt("MyTestLog1"));
|
|
EXPECT_EQ("MyTestLog1", logger()->name());
|
|
}
|