diff --git a/schach/src/test/java/de/hs_mannheim/informatik/chess/test/ChessTest.java b/schach/src/test/java/de/hs_mannheim/informatik/chess/test/ChessTest.java new file mode 100644 index 0000000..ae4eadb --- /dev/null +++ b/schach/src/test/java/de/hs_mannheim/informatik/chess/test/ChessTest.java @@ -0,0 +1,34 @@ +package de.hs_mannheim.informatik.chess.test; + +import static org.junit.jupiter.api.Assertions.*; + +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +class ChessTest { + + @BeforeAll + static void setUpBeforeClass() throws Exception { + } + + @AfterAll + static void tearDownAfterClass() throws Exception { + } + + @BeforeEach + void setUp() throws Exception { + } + + @AfterEach + void tearDown() throws Exception { + } + + @Test + void test() { + fail("Not yet implemented"); + } + +}