eedb/tests/unit/main.cpp
2017-03-20 09:48:09 +01:00

12 lines
202 B
C++

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