mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:10:04 +00:00
13 lines
274 B
C++
13 lines
274 B
C++
#include <scwx/util/logger.hpp>
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <spdlog/spdlog.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
scwx::util::Logger::Initialize();
|
|
spdlog::set_level(spdlog::level::debug);
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|