mirror of
https://github.com/holub/mame
synced 2025-04-18 22:49:58 +03:00
10 lines
149 B
C++
10 lines
149 B
C++
#include <stdio.h>
|
|
#include "gtest/gtest.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|
|
|