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.
24 lines
250 B
24 lines
250 B
#ifdef TEST
|
|
|
|
#include "unity.h"
|
|
|
|
#include "displayMenuCalculator.c"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_displayMenuCalculator(void)
|
|
{
|
|
int e, a;
|
|
e = 1;
|
|
a = check();
|
|
TEST_ASSERT_EQUAL_INT(e, a);
|
|
}
|
|
|
|
|
|
#endif // TEST
|