Files
oak-editor/tests/gtest/main.cpp
T
2026-01-05 02:55:21 +08:00

10 lines
191 B
C++

#include <QCoreApplication>
#include <gtest/gtest.h>
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}