Lines Matching refs:ucResult
326 uint8_t ucResult; in test_ucBitConfig_read_8_fail() local
331 ucResult = ucBitConfig_read_8( pxConfig ); in test_ucBitConfig_read_8_fail()
333 TEST_ASSERT_EQUAL( 0xffU, ucResult ); in test_ucBitConfig_read_8_fail()
346 uint8_t ucResult; in test_xBitConfig_read_8_HappyPath() local
356 ucResult = ucBitConfig_read_8( pxConfig ); in test_xBitConfig_read_8_HappyPath()
358 TEST_ASSERT_EQUAL( ucContents[ 0 ], ucResult ); in test_xBitConfig_read_8_HappyPath()
371 uint16_t ucResult; in test_usBitConfig_read_16_fail() local
376 ucResult = usBitConfig_read_16( pxConfig ); in test_usBitConfig_read_16_fail()
378 TEST_ASSERT_EQUAL( 0xffffU, ucResult ); in test_usBitConfig_read_16_fail()
392 uint16_t ucResult, ucResultExpected; in test_usBitConfig_read_16_HappyPath() local
404 ucResult = usBitConfig_read_16( pxConfig ); in test_usBitConfig_read_16_HappyPath()
406 TEST_ASSERT_EQUAL( ucResultExpected, ucResult ); in test_usBitConfig_read_16_HappyPath()