From 40e60359d4f69eb08422a1a34c45c9dba8c432ee Mon Sep 17 00:00:00 2001 From: l13f04751 <l13f04751@Informatik01.stud.cvh.hs-bochum.de> Date: Tue, 8 Nov 2016 09:42:13 +0100 Subject: [PATCH] added Test-Class --- .../tictactoePraktikum/TicTacToeTest.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Praktikum/VINF_TicTacToe/test/tictactoePraktikum/TicTacToeTest.java diff --git a/Praktikum/VINF_TicTacToe/test/tictactoePraktikum/TicTacToeTest.java b/Praktikum/VINF_TicTacToe/test/tictactoePraktikum/TicTacToeTest.java new file mode 100644 index 0000000..04a03b8 --- /dev/null +++ b/Praktikum/VINF_TicTacToe/test/tictactoePraktikum/TicTacToeTest.java @@ -0,0 +1,44 @@ +package tictactoePraktikum; + +import org.junit.*; +import static org.junit.Assert.*; + +/** + * @author lukas + * + */ +public class TicTacToeTest { + + /** + * @throws java.lang.Exception + */ + @BeforeClass + public static void SetUpBeforeClass() throws Exception { + + } + + /** + * @throws java.lang.Exception + */ + @AfterClass + public static void tearDownAfterClass() throws Exception { + + } + + /** + * @throws java.lang.Exception + */ + @Before + public void setUp() throws Exception { + + } + + /** + * Test method for {@link briefmarkenautomat.Sendungstyp#typ(double, int)}. + */ + @Test + public final void testTyp() { + + } + +} -- GitLab