diff --git a/.gitignore b/.gitignore index aeed73a98..e9abb02b5 100644 --- a/.gitignore +++ b/.gitignore @@ -168,4 +168,7 @@ pip-log.txt log* *.ttf -.checkstyle \ No newline at end of file +.checkstyle +*.class +.idea/ +out/ \ No newline at end of file diff --git a/Sophie.txt b/Sophie.txt deleted file mode 100644 index 60ea406b2..000000000 --- a/Sophie.txt +++ /dev/null @@ -1,2 +0,0 @@ - -Henlo :) \ No newline at end of file diff --git a/josh.txt b/josh.txt deleted file mode 100644 index 7b03026c9..000000000 --- a/josh.txt +++ /dev/null @@ -1 +0,0 @@ -Test file. \ No newline at end of file diff --git a/luca.txt b/luca.txt deleted file mode 100644 index c9fdc7adc..000000000 --- a/luca.txt +++ /dev/null @@ -1,4 +0,0 @@ -Dies ist ein deutscher Text von Luca. -Don't mind the German stuff :) - -This is luca.txt from the testBranch diff --git a/src/janae.txt b/src/janae.txt deleted file mode 100644 index d2f0f2080..000000000 --- a/src/janae.txt +++ /dev/null @@ -1 +0,0 @@ -Team Aliens! \ No newline at end of file diff --git a/test/screen/GameScreenTest.java b/test/screen/GameScreenTest.java new file mode 100644 index 000000000..cc34c235a --- /dev/null +++ b/test/screen/GameScreenTest.java @@ -0,0 +1,42 @@ +package screen; + +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class GameScreenTest { + + @BeforeEach + void setUp() { + } + + @AfterEach + void tearDown() { + } + + @Test + void initialize() { + } + + @Test + void run() { + } + + @Test + void isPaused() { + } + + @Test + void pause() { + } + + @Test + void update() { + } + + @Test + void getGameState() { + } +} \ No newline at end of file