pcsx-redux/third_party/GoogleTestAdapter/main.cc
2020-02-14 01:17:03 +01:00

8 lines
218 B
C++

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