Browse Source

Test für addThreeNumbers() erstellt, der auf die Addition von 500, 249, und 251 testet

remotes/origin/habib
Habib 11 months ago
parent
commit
ff2b644964
  1. 11
      src/test/test_funktionen.c

11
src/test/test_funktionen.c

@ -11,6 +11,17 @@ void tearDown(void)
{ {
} }
void test_1000_plus_1(void)
{
/* arrange */
int actual;
int expected = 1000;
/* act */
actual = addThreeNumbers(500, 249, 251);
/* assert */
TEST_ASSERT_EQUAL_INT(expected, actual);
}
#endif #endif
Loading…
Cancel
Save