Files
yaml-cpp/test/main.cpp
T

10 lines
168 B
C++
Raw Normal View History

2008-09-03 22:20:39 +00:00
#include "tests.h"
#include "gtest/gtest.h"
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
2014-03-22 12:49:16 -05:00
Test::RunAll();
return RUN_ALL_TESTS();
2008-09-03 22:20:39 +00:00
}