@ -154,6 +154,9 @@ void test_macro_xQueueCreate_oneItem_zeroLength( void )
TEST_ASSERT_EQUAL ( QUEUE_T_SIZE , getLastMallocSize ( ) ) ;
TEST_ASSERT_EQUAL ( QUEUE_T_SIZE , getLastMallocSize ( ) ) ;
/* Verify that Queue Length is one */
TEST_ASSERT_EQUAL ( 1 , uxQueueGetQueueLength ( xQueue ) ) ;
/* Verify that Queue ItemSize is zero */
/* Verify that Queue ItemSize is zero */
TEST_ASSERT_EQUAL ( 0 , uxQueueGetQueueItemSize ( xQueue ) ) ;
TEST_ASSERT_EQUAL ( 0 , uxQueueGetQueueItemSize ( xQueue ) ) ;
@ -180,6 +183,9 @@ void test_macro_xQueueCreate_oneItem_oneLength( void )
TEST_ASSERT_EQUAL ( QUEUE_T_SIZE + 1 , getLastMallocSize ( ) ) ;
TEST_ASSERT_EQUAL ( QUEUE_T_SIZE + 1 , getLastMallocSize ( ) ) ;
/* Verify that Queue Length is one */
TEST_ASSERT_EQUAL ( 1 , uxQueueGetQueueLength ( xQueue ) ) ;
/* Verify that Queue ItemSize is one */
/* Verify that Queue ItemSize is one */
TEST_ASSERT_EQUAL ( 1 , uxQueueGetQueueItemSize ( xQueue ) ) ;
TEST_ASSERT_EQUAL ( 1 , uxQueueGetQueueItemSize ( xQueue ) ) ;
@ -228,6 +234,9 @@ void test_macro_xQueueCreate_oneItem_multiLength( void )
TEST_ASSERT_EQUAL ( QUEUE_T_SIZE + i , getLastMallocSize ( ) ) ;
TEST_ASSERT_EQUAL ( QUEUE_T_SIZE + i , getLastMallocSize ( ) ) ;
/* Verify that Queue Length is one */
TEST_ASSERT_EQUAL ( 1 , uxQueueGetQueueLength ( xQueue ) ) ;
/* Verify that Queue ItemSize is equal to the mailbox size */
/* Verify that Queue ItemSize is equal to the mailbox size */
TEST_ASSERT_EQUAL ( i , uxQueueGetQueueItemSize ( xQueue ) ) ;
TEST_ASSERT_EQUAL ( i , uxQueueGetQueueItemSize ( xQueue ) ) ;