Browse Source

Added unittest for naturalLogarithmFunction

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

5
src/test/c/test_taschenrechner.c

@ -138,5 +138,10 @@ void test_logarithmFunction(void) {
TEST_ASSERT_EQUAL_FLOAT(1.0, logarithmFunction(10.0)); TEST_ASSERT_EQUAL_FLOAT(1.0, logarithmFunction(10.0));
} }
// Natural logarithm function
void test_naturalLogarithmFunction(void) {
// Your test code here
TEST_ASSERT_EQUAL_FLOAT(0.0, naturalLogarithmFunction(1.0));
}
#endif // TEST #endif // TEST
Loading…
Cancel
Save