mame/tests/main.cpp
2015-11-08 16:06:28 +01:00

12 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();
}