diff options
author | 2015-11-08 16:06:28 +0100 | |
---|---|---|
committer | 2015-11-08 16:06:28 +0100 | |
commit | cf66ec55638af1a74df09193b226b46f37653079 (patch) | |
tree | 734dc3f8ddd0c3c86bb863d52a6ec540ffb59334 /tests/main.cpp | |
parent | 7418d14468e909b86922281f690fca7999114f21 (diff) |
c -> cpp for test (nw)
Diffstat (limited to 'tests/main.cpp')
-rw-r--r-- | tests/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp new file mode 100644 index 00000000000..a3ba19293f9 --- /dev/null +++ b/tests/main.cpp @@ -0,0 +1,12 @@ +// 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(); +} + |