mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
13 lines
213 B
C
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();
|
|
}
|
|
|