|
|
@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
#include "unity.h" |
|
|
|
|
|
|
|
#include "calculatorGetUserInputFactorial.h" |
|
|
|
#include "calculatorGetUserInputFactorial.c" |
|
|
|
|
|
|
|
void setUp(void) |
|
|
|
{ |
|
|
@ -12,9 +12,12 @@ void tearDown(void) |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
void test_calculatorGetUserInputFactorial_NeedToImplement(void) |
|
|
|
void test_calculatorGetUserInputFactorial(void) |
|
|
|
{ |
|
|
|
TEST_IGNORE_MESSAGE("Need to Implement calculatorGetUserInputFactorial"); |
|
|
|
int a, e; |
|
|
|
e = 1; |
|
|
|
a = allowWhen(); |
|
|
|
TEST_ASSERT_EQUAL_INT(e, a); |
|
|
|
} |
|
|
|
|
|
|
|
#endif // TEST |