mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 04:37:35 +08:00
17 lines
362 B
C++
17 lines
362 B
C++
/*
|
|
* Copyright (C) 2014 Pavel Kirienko <pavel.kirienko@gmail.com>
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <uavcan/FigureOfMerit.hpp>
|
|
|
|
|
|
TEST(DsdlConst2, FigureOfMerit)
|
|
{
|
|
using uavcan::FigureOfMerit;
|
|
|
|
std::cout << &FigureOfMerit::MAX << std::endl;
|
|
std::cout << &FigureOfMerit::MIN << std::endl;
|
|
std::cout << &FigureOfMerit::UNKNOWN << std::endl;
|
|
}
|