@ -8,5 +8,6 @@ float FzuC(float tempF);
float FzuK(float tempF);
float KzuC(float tempK);
float KzuF(float tempK);
#endif //TEMPERATUR_H
@ -46,4 +46,11 @@ float result = KzuC(298.15);
float expected = 25;
TEST_ASSERT_EQUAL(expected, result);
}
void test_temperaturRechner_KzuF(void)
{
float result = KzuF(298.15);
float expected = 77;
#endif