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.

26 lines
322 B

  1. #ifdef TEST
  2. #include "unity.h"
  3. #include "kleiner_groessergleich.h"
  4. #include "kleiner_groessergleich.c"
  5. void setUp(void)
  6. {
  7. }
  8. void tearDown(void)
  9. {
  10. }
  11. // Test 1
  12. void test_gleich(void)
  13. {
  14. int result, expected = 3;
  15. result = vergleicheZahlen_int(1,1);
  16. TEST_ASSERT_EQUAL_INT(expected, result);
  17. }
  18. #endif //TEST