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.
 
 
 
 

96 lines
1.9 KiB

#ifdef TEST
#include "unity.h"
#include "currencyExchange.h"
void setUp(void)
{
}
void tearDown(void)
{
}
//void test_toUSD(void) {
//
// /* Arrange */
//
// int length = 5;
// float euro[] = {34, 233, 400, 100, 45};
//
// float expectedUSD[length];
// float resultUSD[length];
//
// for (int i = 0; i < length; i++) {
// resultUSD[i] = toUSD(euro[i]);
// }
//
// /* Act */
//
// for (int i = 0; i < length; i++) {
// expectedUSD[i] = euro[i] * CURRENT_USD_RATE_OF_ONE_EURO;
// }
//
// /* Assert */
//
// for (int i = 0; i < length; i++) {
// TEST_ASSERT_EQUAL_FLOAT(expectedUSD[i], resultUSD[i]);
// }
//
//}
//
//void test_toGBP(void) {
//
// /* Arrange */
//
// int length = 5;
// float euro[] = {34, 233, 400, 100, 45};
//
// float expectedGBP[length];
// float resultGBP[length];
//
// for (int i = 0; i < length; i++) {
// resultGBP[i] = toGBP(euro[i]);
// }
//
// /* Act */
//
// for (int i = 0; i < length; i++) {
// expectedGBP[i] = euro[i] * CURRENT_GBP_RATE_OF_ONE_EURO;
// }
//
// /* Assert */
//
// for (int i = 0; i < length; i++) {
// TEST_ASSERT_EQUAL_FLOAT(expectedGBP[i], resultGBP[i]);
// }
//
//}
void test_convert(void) {
int length = 5;
float euro[] = {34, 233, 400, 100, 45};
float expectedUSD[length];
float expectedGBP[length];
float resultUSD[length];
float resultGBP[length];
for (int i = 0; i < length; i++) {
expectedUSD[i] = euro[i] * CURRENT_USD_RATE_OF_ONE_EURO;
expectedGBP[i] = euro[i] * CURRENT_GBP_RATE_OF_ONE_EURO;
}
for (int i = 0; i < length; i++) {
resultUSD[i] = convert(euro[i], 1);
resultGBP[i] = convert(euro[i], 2);
}
for (int i = 0; i < length; i++) {
TEST_ASSERT_EQUAL_FLOAT(expectedUSD[i], resultUSD[i]);
TEST_ASSERT_EQUAL_FLOAT(expectedGBP[i], resultGBP[i]);
}
}
#endif // TEST