1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Created the main entry of the test suite.

This commit is contained in:
Matias Fontanini
2011-09-15 10:20:44 -03:00
parent 4d8fb5a4e5
commit 28f7e3ed1e

9
tests/src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
#include <gtest/gtest.h>
int main(int argc, char *argv[]) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}