cleaned up test suit

This commit is contained in:
Marvin Kaiser
2020-01-14 11:47:04 +01:00
parent be43cc9a77
commit d2d50f6d4f
13 changed files with 218 additions and 205 deletions

11
src/test/math/math.h Normal file
View File

@@ -0,0 +1,11 @@
/*
Die nachfolgenden Funktionen werden später dazu gelinkt
Der Ursprung ist die tests.k Datei, dort sind diese Funktionen implementiert
*/
int add(int x, int y);
int sub(int x, int y);
int mul(int x, int y);
int modulo(int x, int y);
int neg(int x);
int id(int x);
int selfMinus(int x);