implement TournamentTest

This commit is contained in:
Andrin Fassbind
2022-05-13 14:23:17 +02:00
parent 03c9da13a5
commit 40cfd69436
3 changed files with 74 additions and 9 deletions
@@ -12,6 +12,7 @@ import javafx.scene.text.Font;
import java.io.IOException;
import java.net.URL;
import java.nio.charset.Charset;
public class Factory {
private TournamentDecorator tournamentDecorator;
@@ -2,6 +2,7 @@ package ch.zhaw.projekt2.turnierverwaltung;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
@@ -233,7 +234,7 @@ public class Tournament implements Serializable {
* @param type
*/
public void setType(Type type) {
logger.fine("Setting the type of the tournament to: " + type);
logger.fine("Setting the type of the tournament to: " + type);
this.type = type;
}