Browse Source

square funktion test

remotes/origin/Abdelrahman
Abdelrahman 11 months ago
parent
commit
4b31f40819
  1. 4
      src/test/test_funktionen.c

4
src/test/test_funktionen.c

@ -11,6 +11,10 @@ void tearDown(void)
{
}
void test_square(void) {
float result = square(2.5);
TEST_ASSERT_EQUAL_FLOAT(6.25, result);
}
#endif
Loading…
Cancel
Save