mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 04:54:06 +08:00
8 lines
107 B
C++
8 lines
107 B
C++
#include "gtest/gtest.h"
|
|
|
|
TEST(test_example, sample_test)
|
|
{
|
|
printf("blabla \n" );
|
|
EXPECT_EQ(1, 1);
|
|
}
|