|
|
@ -3,6 +3,7 @@ |
|
|
|
#include "unity.h" |
|
|
|
|
|
|
|
#include "inputHandling.h" |
|
|
|
char halloWelt[]="Hallo Welt"; |
|
|
|
|
|
|
|
void setUp(void) |
|
|
|
{ |
|
|
@ -12,9 +13,10 @@ void tearDown(void) |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
void test_inputHandling_NeedToImplement(void) |
|
|
|
void test_inputHandling_deleteOneWhiteSpace(void) |
|
|
|
{ |
|
|
|
TEST_IGNORE_MESSAGE("Need to Implement inputHandling"); |
|
|
|
deleteWhitespace(halloWelt, 10); |
|
|
|
TEST_ASSERT_EQUAL_STRING("HalloWelt", halloWelt); |
|
|
|
} |
|
|
|
|
|
|
|
#endif // TEST |