#include #include #include #include #include "../src/stringManipulation.c" void test_power() { /*initializing test values*/ int testValues[] = {1,2,3,4,5,6,7,8,9}; int expectedValues[] = {1,4,9,16,25,36,49,64,81}; int length = sizeof(testValues)/sizeof(int); /*assertions*/ const int exponent = 2; for(int i=0;i