Browse Source

Unittest: test_2.c

main
Pascal Gutermuth 2 years ago
parent
commit
996709f706
  1. 1
      .gitignore
  2. 2
      .vscode/settings.json
  3. 1
      unittests/test_1.c
  4. 8
      unittests/test_2.c
  5. 1
      unittests/test_main.c
  6. 1
      unittests/tests.h

1
.gitignore

@ -1,2 +1,3 @@
quiz-game.exe quiz-game.exe
unittests-exec.exe unittests-exec.exe
/.vscode

2
.vscode/settings.json

@ -1,5 +1,5 @@
{ {
"files.associations": { "files.associations": {
"functions.h": "c"
"tests.h": "c"
} }
} }

1
unittests/test_1.c

@ -2,6 +2,7 @@
void test_1() void test_1()
{ {
printf("TEST 1 STARTET\n");
assert(!printEndMsg(220, 1110)); assert(!printEndMsg(220, 1110));
printf("TEST 1 ERFOLGREICH\n"); printf("TEST 1 ERFOLGREICH\n");
} }

8
unittests/test_2.c

@ -0,0 +1,8 @@
#include "tests.h"
void test_2()
{
printf("TEST 2 STARTET\n");
assert(!compareStrings("HALLO", "HALLO"));
printf("TEST 2 ERFOLGREICH\n");
}

1
unittests/test_main.c

@ -5,4 +5,5 @@
int main() int main()
{ {
test_1(); test_1();
test_2();
} }

1
unittests/tests.h

@ -6,3 +6,4 @@
#include "functions.h" #include "functions.h"
void test_1(); void test_1();
void test_2();
Loading…
Cancel
Save