Files

10 lines
200 B
C++
Raw Permalink Normal View History

2026-03-24 10:14:17 -04:00
#include <QCoreApplication>
#include <gtest/gtest.h>
int main(int argc, char** argv)
{
QCoreApplication app(argc, argv);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}