From e76a50168426b9ce033d786c96bf5f130a0f1b78 Mon Sep 17 00:00:00 2001 From: Sebastian Kacza Date: Fri, 8 Jan 2021 15:30:21 +0100 Subject: [PATCH] Upload --- src/de/jaujau/UnitTests/TEST_TexturenGUI.java | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100755 src/de/jaujau/UnitTests/TEST_TexturenGUI.java diff --git a/src/de/jaujau/UnitTests/TEST_TexturenGUI.java b/src/de/jaujau/UnitTests/TEST_TexturenGUI.java deleted file mode 100755 index ce956b8..0000000 --- a/src/de/jaujau/UnitTests/TEST_TexturenGUI.java +++ /dev/null @@ -1,27 +0,0 @@ -package de.jaujau.UnitTests; - -import static org.junit.jupiter.api.Assertions.*; - -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; - -import de.jaujau.daten.Texturenpakete; -import de.jaujau.gui.texturenauswaehlen_GUI; - -class TEST_TexturenGUI { - - private Texturenpakete pakete; - private texturenauswaehlen_GUI gui; - - @BeforeEach - void setUp() throws Exception { - texturenauswaehlen_GUI gui = new texturenauswaehlen_GUI(pakete); - } - - @Test - void test() { - //fail("Not yet implemented"); - gui.setVisible(true); - } - -}