1
0
forked from josh/j3ml
Files
j3ml-fork/tests/tests.cpp
2023-12-28 16:04:31 -06:00

16 lines
292 B
C++

#include <gtest/gtest.h>
GTEST_API_ int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
#ifdef __WIN32
extern "C" {
int wmain(int argc, wchar_t* argv[])
{
return main(argc, reinterpret_cast<char **>(argv));
}
};
#endif