QRCodeLibrary/tests/main_tests.cpp
2021-12-15 23:31:29 +03:00

9 lines
149 B
C++

#include "gtest/gtest.h"
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
int ret = RUN_ALL_TESTS();
return ret;
}