mame/tests/main.c
2015-09-02 13:50:20 +02:00

13 lines
213 B
C

// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic
#include <stdio.h>
#include "gtest/gtest.h"
int main(int argc, char **argv)
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}