Update queue Unit Tests to add uxQueueItemSize (#1040)

Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
This commit is contained in:
kar-rahul-aws 2023-07-18 15:12:00 +05:30 committed by GitHub
parent 9f6437ca6a
commit 8b98d08bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 35 additions and 20 deletions

View file

@ -115,10 +115,10 @@ void test_xQueueCreateSet_oneLength( void )
TEST_ASSERT_EQUAL( QUEUE_T_SIZE + sizeof( void * ), getLastMallocSize() );
/* Veify that QueueSet is not full */
/* Verify that QueueSet is not full */
TEST_ASSERT_EQUAL( 1, uxQueueSpacesAvailable( xQueueSet ) );
/* Veify that QueueSet is empty */
/* Verify that QueueSet is empty */
TEST_ASSERT_EQUAL( 0, uxQueueMessagesWaiting( xQueueSet ) );
vQueueDelete( xQueueSet );