From 78f23e4622eec07f204b8764d78912fc74943a68 Mon Sep 17 00:00:00 2001 From: fdai7472 Date: Thu, 25 Jan 2024 22:22:10 +0100 Subject: [PATCH] Anlegen der Dateien slot_machine.c, slot_machine.h, test_slot_machine.c --- src/main/c/Stefan/place_your_code_here.txt | 0 src/main/c/Stefan/slot_machine.c | 3 +++ src/main/c/Stefan/slot_machine.h | 6 ++++++ src/test/c/Stefan/place_your_tests_here.txt | 0 src/test/c/Stefan/test_slot_machine.c | 8 ++++++++ 5 files changed, 17 insertions(+) delete mode 100644 src/main/c/Stefan/place_your_code_here.txt create mode 100644 src/main/c/Stefan/slot_machine.c create mode 100644 src/main/c/Stefan/slot_machine.h delete mode 100644 src/test/c/Stefan/place_your_tests_here.txt create mode 100644 src/test/c/Stefan/test_slot_machine.c diff --git a/src/main/c/Stefan/place_your_code_here.txt b/src/main/c/Stefan/place_your_code_here.txt deleted file mode 100644 index e69de29..0000000 diff --git a/src/main/c/Stefan/slot_machine.c b/src/main/c/Stefan/slot_machine.c new file mode 100644 index 0000000..0489155 --- /dev/null +++ b/src/main/c/Stefan/slot_machine.c @@ -0,0 +1,3 @@ +#include "slot_machine.h" + +void slotMachine(){} \ No newline at end of file diff --git a/src/main/c/Stefan/slot_machine.h b/src/main/c/Stefan/slot_machine.h new file mode 100644 index 0000000..802a09f --- /dev/null +++ b/src/main/c/Stefan/slot_machine.h @@ -0,0 +1,6 @@ +#ifndef SLOT_MACHINE_H +#define SLOT_MACHINE_H + +void slotMachine(); + +#endif // SLOT_MACHINE_H \ No newline at end of file diff --git a/src/test/c/Stefan/place_your_tests_here.txt b/src/test/c/Stefan/place_your_tests_here.txt deleted file mode 100644 index e69de29..0000000 diff --git a/src/test/c/Stefan/test_slot_machine.c b/src/test/c/Stefan/test_slot_machine.c new file mode 100644 index 0000000..b327568 --- /dev/null +++ b/src/test/c/Stefan/test_slot_machine.c @@ -0,0 +1,8 @@ +#include "slot_machine.h" +#include "unity.h" + +void setUp() {} + +void tearDown() {} + +void test_test(){} \ No newline at end of file