test(tests/probe): logging module test suite started
This commit is contained in:
13
tests/probe/loggerTest.cpp
Normal file
13
tests/probe/loggerTest.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <gtest/gtest.h>
|
||||
#include "logger.h"
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <sstream>
|
||||
|
||||
class loggerTest : public ::testing::Test {};
|
||||
|
||||
TEST_F(loggerTest, DefaultConstructor) {
|
||||
EXPECT_NO_THROW(Logger::getInstance("test.log"));
|
||||
}
|
||||
Reference in New Issue
Block a user