28 lines
542 B
Java
Executable File
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);
|
|
}
|
|
|
|
}
|