mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
12 lines
213 B
C++
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();
|
|
}
|
|
|