Files
jaujau/src/de/jaujau/UnitTests/TEST_TexturenGUI.java
Sebastian Kacza 1682e72045 Update
2021-01-08 15:28:37 +01:00

28 lines
542 B
Java
Executable File

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