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.

39 lines
918 B

  1. #include "unity.h"
  2. #include "subtraktion.h"
  3. void setUp(void)
  4. {
  5. }
  6. void tearDown(void)
  7. {
  8. }
  9. void test_sub_double_1(void)
  10. {
  11. double result, expected = 1.0; // Erwartetes Ergebnis soll 1.0 sein
  12. result = subdouble(5.0, 4.0); // Aufruf der Subtraktionsfunktion
  13. TEST_ASSERT_EQUAL_DOUBLE(expected, result); // Überprüfung, ob das Ergebnis dem Erwarteten entspricht
  14. }
  15. void test_sub_int_1(void)
  16. {
  17. int result, expected = 1; // Erwartetes Ergebnis soll 1 sein
  18. result = subint(5, 4); // Aufruf der Subtraktionsfunktion
  19. TEST_ASSERT_EQUAL_DOUBLE(expected, result); // Überprüfung, ob das Ergebnis dem Erwarteten entspricht
  20. }
  21. void test_sub_double_2(void)
  22. {
  23. int result, expected = -1; // Erwartetes Ergebnis soll 1 sein
  24. result = subint(5, 6); // Aufruf der Subtraktionsfunktion
  25. TEST_ASSERT_EQUAL_DOUBLE(expected, result); // Überprüfung, ob das Ergebnis dem Erwarteten entspricht
  26. }