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.

22 lines
300 B

12 months ago
12 months ago
12 months ago
  1. #ifdef TEST
  2. #include "unity.h"
  3. #include "inputHandling.h"
  4. char halloWelt[]="Hallo Welt";
  5. void setUp(void)
  6. {
  7. }
  8. void tearDown(void)
  9. {
  10. }
  11. void test_inputHandling_deleteOneWhiteSpace(void)
  12. {
  13. deleteWhitespace(halloWelt, 10);
  14. TEST_ASSERT_EQUAL_STRING("HalloWelt", halloWelt);
  15. }
  16. #endif // TEST