|
|
@ -27,5 +27,13 @@ void test_subtraktion_5_minus_4_subint(void) |
|
|
|
TEST_ASSERT_EQUAL_DOUBLE(expected, result); // Überprüfung, ob das Ergebnis dem Erwarteten entspricht |
|
|
|
} |
|
|
|
|
|
|
|
void test_subtraktion_6_minus_5_subint(void) |
|
|
|
{ |
|
|
|
int result, expected = -1; // Erwartetes Ergebnis soll 1 sein |
|
|
|
|
|
|
|
result = subint(5, 6); // Aufruf der Subtraktionsfunktion |
|
|
|
|
|
|
|
TEST_ASSERT_EQUAL_DOUBLE(expected, result); // Überprüfung, ob das Ergebnis dem Erwarteten entspricht |
|
|
|
} |
|
|
|
|
|
|
|
|