mirror of
https://github.com/grumpycoders/pcsx-redux.git
synced 2025-04-02 10:41:54 -04:00
8 lines
218 B
C++
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());
|
|
}
|