1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-27 04:11:35 +01:00

Cleanup tests names and CMake script

This commit is contained in:
Matias Fontanini
2016-10-23 10:21:58 -07:00
parent aaba3dd46a
commit 9dbad2a26f
62 changed files with 70 additions and 189 deletions

9
tests/src/main_test.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();
}