File tree 1 file changed +14
-0
lines changed
FreeRTOS/Test/CMock/queue/sets
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 39
39
#include "mock_fake_port.h"
40
40
41
41
/* ============================ GLOBAL VARIABLES =========================== */
42
+ #define EVENT_QUEUE_LENGTH 5
42
43
43
44
/* ========================== CALLBACK FUNCTIONS =========================== */
44
45
@@ -124,6 +125,19 @@ void test_xQueueCreateSet_oneLength( void )
124
125
vQueueDelete ( xQueueSet );
125
126
}
126
127
128
+ void test_xQueueCreateSetStatic_HappyPath ( void )
129
+ {
130
+ StaticQueue_t xQueueSetBuffer ;
131
+ QueueHandle_t xQueueSetStorage [ EVENT_QUEUE_LENGTH ];
132
+ QueueSetHandle_t xQueueSet = NULL ;
133
+
134
+ xQueueSet = xQueueCreateSetStatic ( EVENT_QUEUE_LENGTH ,
135
+ ( uint8_t * ) & ( xQueueSetStorage [ 0 ] ),
136
+ & ( xQueueSetBuffer ) );
137
+
138
+ TEST_ASSERT_NOT_NULL ( xQueueSet );
139
+ }
140
+
127
141
/**
128
142
* @brief Test xQueueAddToSet with the same queue twice
129
143
* @coverage xQueueAddToSet
You can’t perform that action at this time.
0 commit comments