From 6fdccd7ef13f314b7829b0afecc2e6a4aaa0a10c Mon Sep 17 00:00:00 2001 From: KaffeeMaus Date: Thu, 25 Jan 2024 21:30:20 +0100 Subject: [PATCH] add my files --- src/main/c/Georg/tictactoe.c | 4 ++++ src/main/c/Georg/tictactoe.h | 5 +++++ src/test/c/Georg/test_tictactoe.c | 15 +++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 src/main/c/Georg/tictactoe.c create mode 100644 src/main/c/Georg/tictactoe.h create mode 100644 src/test/c/Georg/test_tictactoe.c diff --git a/src/main/c/Georg/tictactoe.c b/src/main/c/Georg/tictactoe.c new file mode 100644 index 0000000..87680a0 --- /dev/null +++ b/src/main/c/Georg/tictactoe.c @@ -0,0 +1,4 @@ +#include +#include + +#include "tictactoe.h" diff --git a/src/main/c/Georg/tictactoe.h b/src/main/c/Georg/tictactoe.h new file mode 100644 index 0000000..ca8f3ae --- /dev/null +++ b/src/main/c/Georg/tictactoe.h @@ -0,0 +1,5 @@ +#ifndef TICTACTOE_H +#define TICTACTOE_H + + +#endif //TICTACTOE_H diff --git a/src/test/c/Georg/test_tictactoe.c b/src/test/c/Georg/test_tictactoe.c new file mode 100644 index 0000000..95b2edc --- /dev/null +++ b/src/test/c/Georg/test_tictactoe.c @@ -0,0 +1,15 @@ +#include "tictactoe.h" +#include "unity.h" + +void setup(void){ + +} + +void tearDown(void){ + +} + +void test_compileTest_shutBeAllwaysTrue(void){ + TEST_ASSERT_EQUAL_INT(1,1); +} +