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.
28 lines
369 B
28 lines
369 B
#ifdef TEST
|
|
|
|
#include "unity.h"
|
|
|
|
#include "exponent.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_IntegerExponent_ForPositiveExponent(void){
|
|
int r1, r2, r3;
|
|
|
|
r1 = expI(2, -2);
|
|
r2 = expI(3, -3);
|
|
r3 = expI(4, 5);
|
|
|
|
TEST_ASSERT_EQUAL_INT(4, r1);
|
|
TEST_ASSERT_EQUAL_INT(-27, r2);
|
|
TEST_ASSERT_EQUAL_INT(625, r3);
|
|
}
|
|
|
|
|
|
#endif // TEST
|