You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
234 B

#ifdef TEST
#include "decbinary.h"
#include "unity.h"
void setUp(void)
{
}
void test_decimal_1(void)
{
int result, expected = 4;
result = decimal_to_binary(10);
TEST_ASSERT_EQUAL_INT(expected, result);
}
#endif //TEST