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