firmware  v0.1.2
Chromation Spectrometer Dev-Kit
test_RecordedArg.h
1 #ifndef _TEST_RECORDEDARG_H
2 #define _TEST_RECORDEDARG_H
3 
4 void SetUp_RecordedArg(void);
5 void TearDown_RecordedArg(void);
6 
7 void SetupRecord_uint8_t_points_pArg_at_a_uint8_t(void);
8 void Destroy_for_SetupRecord_uint8_t_frees_a_uint8_t(void);
9 void Print_for_SetupRecord_uint8_t_prints_a_uint8_t_to_a_string(void);
10 void Match_for_SetupRecord_uint8_t_checks_if_uint8_t_values_match(void);
11 
12 void SetupRecord_uint16_t_points_pArg_at_a_uint16_t(void);
13 void Destroy_for_SetupRecord_uint16_t_frees_a_uint16_t(void);
14 void Print_for_SetupRecord_uint16_t_prints_a_uint16_t_to_a_string(void);
15 void Match_for_SetupRecord_uint16_t_checks_if_uint16_t_values_match(void);
16 
17 void SetupRecord_GString_points_pArg_at_a_GString(void);
18 void Destroy_for_SetupRecord_GString_frees_a_GString(void);
19 void Print_for_SetupRecord_GString_prints_a_GString_to_a_string(void);
20 void Match_for_SetupRecord_GString_checks_if_GString_values_match(void);
21 
22 void SetupRecord_p_uint8_t_points_pArg_at_a_pointer_to_an_uint8_t(void);
23 void Destroy_for_SetupRecord_p_uint8_t_frees_a_pointer_to_an_uint8_t(void);
24 void Print_for_SetupRecord_p_uint8_t_derefs_and_prints_value_to_a_string(void);
25 void Match_for_SetupRecord_p_uint8_t_derefs_and_checks_if_values_match(void);
26 
27 void SetupRecord_p_GString_points_pArg_at_a_pointer_to_a_GString(void);
28 void Destroy_for_SetupRecord_p_GString_frees_a_pointer_to_a_GString(void);
29 void Print_for_SetupRecord_p_GString_derefs_and_prints_value_to_a_string(void);
30 void Match_for_SetupRecord_p_GString_derefs_and_checks_if_values_match(void);
31 
32 #endif // _TEST_RECORDEDARG_H