supercell-wx/test/source/scwx/wxtest.cpp
2022-04-19 16:05:31 -05:00

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();
}