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.
36 lines
552 B
36 lines
552 B
#ifdef TEST
|
|
|
|
#include "unity.h"
|
|
#include "checkLoanEligibility.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_checkLoanEligibilitySuccess(void) {
|
|
|
|
/* Arrange */
|
|
|
|
int user_id[3] = {1234, 1327, 1666}; // user_ids from file for testing
|
|
|
|
bool result[3];
|
|
|
|
/* Act */
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
result[i] = checkLoanEligibility(user_id[i]);
|
|
}
|
|
|
|
/* Assert */
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
TEST_ASSERT_TRUE(result[i]); // Pass if user_id is found in the file
|
|
}
|
|
}
|
|
|
|
|
|
#endif // TEST
|