Browse Source

add my files

remotes/origin/georg
KaffeeMaus 11 months ago
parent
commit
6fdccd7ef1
  1. 4
      src/main/c/Georg/tictactoe.c
  2. 5
      src/main/c/Georg/tictactoe.h
  3. 15
      src/test/c/Georg/test_tictactoe.c

4
src/main/c/Georg/tictactoe.c

@ -0,0 +1,4 @@
#include <stdio.h>
#include <stdlib.h>
#include "tictactoe.h"

5
src/main/c/Georg/tictactoe.h

@ -0,0 +1,5 @@
#ifndef TICTACTOE_H
#define TICTACTOE_H
#endif //TICTACTOE_H

15
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);
}
Loading…
Cancel
Save