Browse Source

Added unittest for logarithmFunction

remotes/origin/kabrel
fdai7782 11 months ago
parent
commit
1512e19419
  1. 7
      src/test/c/test_taschenrechner.c

7
src/test/c/test_taschenrechner.c

@ -132,4 +132,11 @@ void test_tangentFunction(void) {
TEST_ASSERT_EQUAL_FLOAT(0.0, tangentFunction(0.0));
}
// Logarithm function
void test_logarithmFunction(void) {
// Your test code here
TEST_ASSERT_EQUAL_FLOAT(1.0, logarithmFunction(10.0));
}
#endif // TEST
Loading…
Cancel
Save