Lines Matching refs:xResult
64 BaseType_t xResult = pdFALSE; in test_xBitConfig_init_Fail() local
70 xResult = xBitConfig_init( pxConfig, pucData, uxSize ); in test_xBitConfig_init_Fail()
72 TEST_ASSERT_EQUAL( pdFALSE, xResult ); in test_xBitConfig_init_Fail()
88 BaseType_t xResult = pdFALSE; in test_xBitConfig_init_pucDataNull() local
97 xResult = xBitConfig_init( pxConfig, pucData, uxSize ); in test_xBitConfig_init_pucDataNull()
99 TEST_ASSERT_EQUAL( pdTRUE, xResult ); in test_xBitConfig_init_pucDataNull()
117 BaseType_t xResult = pdFALSE; in test_xBitConfig_init_HappyPath() local
126 xResult = xBitConfig_init( &xConfig, ucData, uxSize ); in test_xBitConfig_init_HappyPath()
128 TEST_ASSERT_EQUAL( pdTRUE, xResult ); in test_xBitConfig_init_HappyPath()
142 BaseType_t xResult = pdFALSE; in test_xBitConfig_read_uc_xHasError() local
147 xResult = xBitConfig_read_uc( &xConfig, pucData, SIZE_OF_BINARY_STREAM ); in test_xBitConfig_read_uc_xHasError()
149 TEST_ASSERT_EQUAL( pdFALSE, xResult ); in test_xBitConfig_read_uc_xHasError()
162 BaseType_t xResult = pdFALSE; in test_xBitConfig_read_uc_OutOfBoundRead() local
169 xResult = xBitConfig_read_uc( pxConfig, pucData, SIZE_OF_BINARY_STREAM ); in test_xBitConfig_read_uc_OutOfBoundRead()
171 TEST_ASSERT_EQUAL( pdFALSE, xResult ); in test_xBitConfig_read_uc_OutOfBoundRead()
184 BaseType_t xResult = pdFALSE; in test_xBitConfig_read_uc_NullData() local
191 xResult = xBitConfig_read_uc( pxConfig, NULL, SIZE_OF_BINARY_STREAM ); in test_xBitConfig_read_uc_NullData()
193 TEST_ASSERT_EQUAL( pdTRUE, xResult ); in test_xBitConfig_read_uc_NullData()
207 BaseType_t xResult = pdFALSE; in test_xBitConfig_read_uc_HappyPath() local
218 xResult = xBitConfig_read_uc( pxConfig, ucData, uxSize ); in test_xBitConfig_read_uc_HappyPath()
220 TEST_ASSERT_EQUAL( pdTRUE, xResult ); in test_xBitConfig_read_uc_HappyPath()
235 BaseType_t xResult = pdFALSE; in test_pucBitConfig_peek_last_index_uc_xHasError() local
240 xResult = pucBitConfig_peek_last_index_uc( &xConfig, NULL, uxSize ); in test_pucBitConfig_peek_last_index_uc_xHasError()
242 TEST_ASSERT_EQUAL( pdFALSE, xResult ); in test_pucBitConfig_peek_last_index_uc_xHasError()
255 BaseType_t xResult = pdFALSE; in test_pucBitConfig_peek_last_index_uc_NullpucData() local
261 xResult = pucBitConfig_peek_last_index_uc( &xConfig, NULL, uxSize ); in test_pucBitConfig_peek_last_index_uc_NullpucData()
263 TEST_ASSERT_EQUAL( pdFALSE, xResult ); in test_pucBitConfig_peek_last_index_uc_NullpucData()
279 BaseType_t xResult = pdFALSE; in test_pucBitConfig_peek_OutOfBound() local
285 xResult = pucBitConfig_peek_last_index_uc( &xConfig, &ucData, uxSize ); in test_pucBitConfig_peek_OutOfBound()
287 TEST_ASSERT_EQUAL( pdFALSE, xResult ); in test_pucBitConfig_peek_OutOfBound()
302 BaseType_t xResult = pdFALSE; in test_pucBitConfig_peek_last_index_uc_HappyPath() local
311 xResult = pucBitConfig_peek_last_index_uc( &xConfig, ucData, uxSize ); in test_pucBitConfig_peek_last_index_uc_HappyPath()
313 TEST_ASSERT_EQUAL( pdTRUE, xResult ); in test_pucBitConfig_peek_last_index_uc_HappyPath()