From 4c58eebc656766f5065cb4a8ba32f8d7172b53e2 Mon Sep 17 00:00:00 2001 From: valen Date: Sat, 21 Jun 2025 14:11:10 +0200 Subject: [PATCH] JUnit-Test-Klasse angelegt --- .../informatik/chess/test/ChessTest.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 schach/src/test/java/de/hs_mannheim/informatik/chess/test/ChessTest.java 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"); + } + +}