@ -1,2 +1,3 @@
quiz-game.exe
unittests-exec.exe
/.vscode
@ -1,5 +1,5 @@
{
"files.associations": {
"functions.h": "c"
"tests.h": "c"
}
@ -2,6 +2,7 @@
void test_1()
printf("TEST 1 STARTET\n");
assert(!printEndMsg(220, 1110));
printf("TEST 1 ERFOLGREICH\n");
@ -0,0 +1,8 @@
#include "tests.h"
void test_2()
printf("TEST 2 STARTET\n");
assert(!compareStrings("HALLO", "HALLO"));
printf("TEST 2 ERFOLGREICH\n");
@ -5,4 +5,5 @@
int main()
test_1();
test_2();
@ -6,3 +6,4 @@
#include "functions.h"
void test_1();
void test_2();