mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-06 16:49:51 +08:00
added test and stub
This commit is contained in:
committed by
Lorenz Meier
parent
f8ff5b617b
commit
a73a095c1d
@@ -0,0 +1,34 @@
|
||||
#include <systemlib/visibility.h>
|
||||
#include <systemlib/param/param.h>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
//#PARAM_DEFINE_INT32(TEST_A, 5);
|
||||
|
||||
struct param_info_s test = {
|
||||
"test",
|
||||
PARAM_TYPE_INT32,
|
||||
.val.i = 2
|
||||
};
|
||||
|
||||
|
||||
|
||||
extern param_info_s *__param_start, *__param_end;
|
||||
const struct param_info_s *ib = __param_start;
|
||||
const struct param_info_s *il = __param_end;
|
||||
|
||||
TEST(ParamTest, ResetAll) {
|
||||
printf("diff: %i\n", (unsigned)(il - ib));
|
||||
printf("start: %i\n", __param_start);
|
||||
printf("end: %i\n", __param_end);
|
||||
|
||||
param_t testparam = param_find("test");
|
||||
ASSERT_NE(PARAM_INVALID, testparam) << "param_find failed";
|
||||
|
||||
int32_t value;
|
||||
int result = param_get(testparam, &value);
|
||||
ASSERT_EQ(0, result) << "param_get failed";
|
||||
ASSERT_EQ(2, value) << "wrong param value";
|
||||
|
||||
ASSERT_TRUE(false) << "fail";
|
||||
}
|
||||
Reference in New Issue
Block a user