1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
227 B
C++
Raw Normal View History

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