This commit is contained in:
Sebastian Kacza
2021-01-08 15:30:21 +01:00
parent 7894682a55
commit e76a501684

View File

@@ -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);
}
}