Created testsuite and makefile to run testsuite

This commit is contained in:
Marvin Kaiser
2019-12-17 15:13:31 +01:00
parent aaf1c3195d
commit 59664e73b0
7 changed files with 237 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
#include <stdio.h>
#include "functionCall.h"
void printArgSuccess(char* name, int expected, int result) {
printf("SUCCESS:\t%s(<argumentList>)\tGOT: %d\tExpected: %d\n", name, result, expected);
}
void printArgError(char* name, int expected, int result) {
printf("ERROR:\t\t%s(<argumentList>)\tGOT: %d\tExpected: %d\n", name, result, expected);
}
void argumentTest(char* name, int expected, int result) {
if (expected == result) {
printArgSuccess(name, expected, result);
} else {
printArgError(name, expected, result);
}
}
void runFunctionCallTests () {
printf("\nFunctionCallTests Tests \n");
argumentTest("arg1", 1, arg1(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg2", 2, arg2(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg3", 3, arg3(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg4", 4, arg4(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg5", 5, arg5(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg6", 6, arg6(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg7", 7, arg7(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg8", 8, arg8(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg9", 9, arg9(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
argumentTest("arg10", 10, arg10(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
}