Browse Source

Added unittest for sineFunction

remotes/origin/kabrel
fdai7782 11 months ago
parent
commit
1f820feab0
  1. 5
      src/test/c/test_taschenrechner.c

5
src/test/c/test_taschenrechner.c

@ -114,5 +114,10 @@ void test_squareRootFunction(void) {
TEST_ASSERT_EQUAL_FLOAT(2.0, squareRootFunction(4.0)); TEST_ASSERT_EQUAL_FLOAT(2.0, squareRootFunction(4.0));
} }
// Sine function
void test_sineFunction(void) {
// Your test code here
TEST_ASSERT_EQUAL_FLOAT(0.0, sineFunction(0.0));
}
#endif // TEST #endif // TEST
Loading…
Cancel
Save