test game

This commit is contained in:
Andrin Fassbind 2022-05-13 19:41:20 +02:00
parent d530d89db4
commit c086cf18a4
2 changed files with 13 additions and 1 deletions

View File

@ -8,7 +8,6 @@ import javafx.scene.control.Label;
import javafx.scene.layout.*;
import javafx.scene.paint.Color;
import javafx.scene.text.Font;
import java.io.IOException;
public class Factory {

View File

@ -0,0 +1,13 @@
package ch.zhaw.projekt2.turnierverwaltung;
import org.junit.jupiter.api.BeforeEach;
public class GameTest {
private Game game;
@BeforeEach
void setup() {
}
}