mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-17 04:57:34 +08:00
bb1c08fdd1
We can't use commas in the TEST_CASE name. With the comma, the test did not run and displayed: Filters: Takeoff, transition and RTL No test cases matched 'Takeoff' No test cases matched 'transition and RTL' ========================================== No tests ran
26 lines
581 B
C++
26 lines
581 B
C++
//
|
|
// VTOL mission test.
|
|
//
|
|
// Author: Lorenz Meier <lorenz@px4.io>
|
|
|
|
#include <mavsdk/mavsdk.h>
|
|
#include <mavsdk/plugins/action/action.h>
|
|
#include <mavsdk/plugins/telemetry/telemetry.h>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include "autopilot_tester.h"
|
|
|
|
|
|
TEST_CASE("Takeoff and transition and RTL", "[vtol]")
|
|
{
|
|
AutopilotTester tester;
|
|
tester.connect(connection_url);
|
|
tester.wait_until_ready();
|
|
tester.arm();
|
|
tester.takeoff();
|
|
tester.wait_until_hovering();
|
|
tester.transition_to_fixedwing();
|
|
tester.execute_rtl();
|
|
tester.wait_until_disarmed();
|
|
}
|