1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 18:29:55 +00:00
openmw/apps/opencs_tests/main.cpp

12 lines
227 B
C++
Raw Normal View History

2024-06-15 11:53:13 +00:00
#include <components/debug/debugging.hpp>
2023-03-10 00:19:15 +00:00
#include <gtest/gtest.h>
int main(int argc, char* argv[])
{
2024-06-15 11:53:13 +00:00
Log::sMinDebugLevel = Debug::getDebugLevel();
2023-03-10 00:19:15 +00:00
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}