mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-01 18:34:06 +08:00
8 lines
171 B
C++
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();
|
|
}
|