@ -9,4 +9,9 @@ float addieren(float a, float b) {
//subtrahieren
float subtrahieren(float a, float b) {
return a - b;
}
//multiplizieren
float multiplizieren(float a, float b) {
return a * b;
@ -3,5 +3,6 @@
float addieren(float a, float b);
float subtrahieren(float a, float b);
float multiplizieren(float a, float b);
#endif // MINIRECHNER_H
@ -62,4 +62,11 @@ void test_minitaschenrechner_4_minus_0(void)
TEST_ASSERT_EQUAL(4, result);
// test multiplikation
void test_minitaschenrechner_8_mal_3(void)
{
float result = multiplizieren(8, 3);
TEST_ASSERT_EQUAL(24, result);
#endif // TEST