From 28f7e3ed1ee5851a7c8448a95287dcd0de58be80 Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Thu, 15 Sep 2011 10:20:44 -0300 Subject: [PATCH] Created the main entry of the test suite. --- tests/src/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/src/main.cpp diff --git a/tests/src/main.cpp b/tests/src/main.cpp new file mode 100644 index 0000000..b7c2235 --- /dev/null +++ b/tests/src/main.cpp @@ -0,0 +1,9 @@ +#include +#include + + + +int main(int argc, char *argv[]) { + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +}