create FactoryTest

merged
This commit is contained in:
Andrin Fassbind
2022-05-13 22:56:24 +02:00
parent 418f583955
commit a8a2a0a463
3 changed files with 2 additions and 11 deletions
@@ -1,7 +1,6 @@
package ch.zhaw.projekt2.turnierverwaltung;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.Pane;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.mockito.InOrder;
@@ -22,7 +21,7 @@ public class FactoryTest {
factory = new Factory(fileIO,td,lc);
InOrder order = inOrder(fileIO,td,lc);
factory.showTournamentList(pane);
//factory.showTournamentList(pane);
}
}