summaryrefslogtreecommitdiff
path: root/TC/unit/utc_SensorFW_sf_get_properties_func.c
blob: 1a1c857d97b158f226fb82489b70818d0be2e906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <tet_api.h>
#include <sensor.h>

sensor_properties_t accel_property;

static void startup(void);
static void cleanup(void);

void (*tet_startup)(void) = startup;
void (*tet_cleanup)(void) = cleanup;

static void utc_SensorFW_sf_get_properties_func_01(void);
static void utc_SensorFW_sf_get_properties_func_02(void);

enum {
	POSITIVE_TC_IDX = 0x01,
	NEGATIVE_TC_IDX,
};

struct tet_testlist tet_testlist[] = {
	{ utc_SensorFW_sf_get_properties_func_01, POSITIVE_TC_IDX },
	{ utc_SensorFW_sf_get_properties_func_02, NEGATIVE_TC_IDX },
	{ NULL, 0},
};

static void startup(void)
{
}

static void cleanup(void)
{
}

/**
 * @brief Positive test case of sf_get_properties()
 */
static void utc_SensorFW_sf_get_properties_func_01(void)
{
	int r = 0;


   	r = sf_get_properties(ACCELEROMETER_SENSOR, &accel_property);

	if (r < 0) {
		tet_infoline("sf_get_properties() failed in positive test case");
		tet_result(TET_FAIL);
		return;
	}
	tet_result(TET_PASS);
}

/**
 * @brief Negative test case of ug_init sf_get_properties()
 */
static void utc_SensorFW_sf_get_properties_func_02(void)
{
	int r = 0;

	r = sf_get_properties(ACCELEROMETER_SENSOR, NULL);
	
	if (r > 0) {
		tet_infoline("sf_get_properties() failed in negative test case");
		tet_result(TET_FAIL);
		return;
	}
	tet_result(TET_PASS);
}