1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-26 03:51:35 +01:00
Files
libtins/tests/src/main.cpp
2011-09-15 10:20:44 -03:00

10 lines
155 B
C++

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