|
|
@ -12,7 +12,7 @@ namespace MiniGamesTests |
|
|
|
{ |
|
|
|
public class TicTacToeTest |
|
|
|
{ |
|
|
|
int[,] StandardKarte() |
|
|
|
int[,] StandardBrett() |
|
|
|
{ |
|
|
|
return new int[,] |
|
|
|
{ |
|
|
@ -44,7 +44,7 @@ namespace MiniGamesTests |
|
|
|
return new TicTacToeModel |
|
|
|
{ |
|
|
|
Spieler = StandardSpieler(), |
|
|
|
Karte = StandardKarte(), |
|
|
|
Brett = StandardBrett(), |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
@ -54,6 +54,7 @@ namespace MiniGamesTests |
|
|
|
{ |
|
|
|
// arrange
|
|
|
|
TicTacToe spiel = new(StandardModel()); |
|
|
|
int[,] brett = spiel.Brett; |
|
|
|
bool erwartetGesetzt = gesetzt; |
|
|
|
|
|
|
|
// act
|
|
|
@ -61,6 +62,7 @@ namespace MiniGamesTests |
|
|
|
|
|
|
|
// assert
|
|
|
|
Assert.Equal(erwartetGesetzt, erhaltenGesetzt); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |