@ -150,6 +150,18 @@ void test_hexStringLengthOfInput256is3(){
//act
result = hexStrLen(256);
//assert
TEST_ASSERT_EQUAL_INT(expected, result);
}
void test_hexStringLengthOfInput255is2(){
//arrange
int result;
int expected = 2;
result = hexStrLen(255);