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.
44 lines
768 B
44 lines
768 B
#ifdef TEST
|
|
|
|
#include "unity.h"
|
|
|
|
#include "exponent.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_DoubleBase_ForPositiveExponent(void){
|
|
int r1, r2, r3;
|
|
|
|
r1 = expI(2.0, -2.0);
|
|
r2 = expI(3.0, -3.0);
|
|
r3 = expI(4.0, 5.0);
|
|
|
|
TEST_ASSERT_EQUAL_INT(4.0, r1);
|
|
TEST_ASSERT_EQUAL_INT(-27.0, r2);
|
|
TEST_ASSERT_EQUAL_INT(625.0, r3);
|
|
}
|
|
|
|
void test_DoubleBase_ForNegativeExponent(void){
|
|
float r1, r2, r3;
|
|
|
|
r1 = expIN(-1.0, 2.0);
|
|
r2 = expIN(-3.0, -3.0);
|
|
r3 = expIN(-2.0, -2.0);
|
|
|
|
printf("Result 1: %d\n", r1);
|
|
printf("Result 2: %d\n", r2);
|
|
printf("Result 3: %d\n", r3);
|
|
|
|
TEST_ASSERT_EQUAL_FLOAT(0.5, r1);
|
|
TEST_ASSERT_EQUAL_FLOAT(-0.0370370373, r2);
|
|
TEST_ASSERT_EQUAL_FLOAT(0.25, r3);
|
|
}
|
|
|
|
|
|
#endif // TEST
|