mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
9 lines
149 B
C++
9 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();
|
|
}
|
|
|