push
github
58 of 197 new or added lines in 19 files covered. (29.44%)
43 existing lines in 13 files now uncovered.18310 of 37299 relevant lines covered (49.09%)
667.65 hits per line
| 1 |
#include "compatibility_mode.h" |
|
| 2 |
|
|
| 3 |
namespace mavsdk {
|
|
| 4 |
|
|
|
NEW
|
std::ostream& operator<<(std::ostream& os, const CompatibilityMode& mode) |
× |
| 6 |
{
|
|
|
NEW
|
switch (mode) {
|
× |
|
NEW
|
case CompatibilityMode::Auto:
|
× |
|
NEW
|
return os << "Auto"; |
× |
|
NEW
|
case CompatibilityMode::Pure:
|
× |
|
NEW
|
return os << "Pure"; |
× |
|
NEW
|
case CompatibilityMode::Px4:
|
× |
|
NEW
|
return os << "Px4"; |
× |
|
NEW
|
case CompatibilityMode::ArduPilot:
|
× |
|
NEW
|
return os << "ArduPilot"; |
× |
|
NEW
|
default:
|
× |
|
NEW
|
return os << "Unknown"; |
× |
| 18 |
} |
|
| 19 |
} |
|
| 20 |
|
|
| 21 |
} // namespace mavsdk
|