You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
390 B

  1. #include "../src/exponentials.h"
  2. #include "unity.h"
  3. #include "limits.h"
  4. void setUp(void) {
  5. // set stuff up here
  6. }
  7. void tearDown(void) {
  8. // clean stuff up here
  9. }
  10. void test_exponentials_calculatenumfrombaseandexponent(void) {
  11. double expectedResult = 32.000000;
  12. double* result;
  13. result = exponentials_double(2, 5);
  14. TEST_ASSERT_EQUAL_DOUBLE(expectedResult, *result);
  15. }