PX4-Autopilot/test/main.cpp
2019-10-28 11:04:38 +01:00

8 lines
171 B
C++

#include <gtest/gtest.h>
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
std::cout << "Run ECL gtests" << std::endl;
return RUN_ALL_TESTS();
}