|
@ -12,14 +12,9 @@ namespace MiniGamesTests |
|
|
{ |
|
|
{ |
|
|
public class TicTacToeTest |
|
|
public class TicTacToeTest |
|
|
{ |
|
|
{ |
|
|
int[,] StandardBrett() |
|
|
|
|
|
|
|
|
TicTacToeBrett StandardBrett() |
|
|
{ |
|
|
{ |
|
|
return new int[,] |
|
|
|
|
|
{ |
|
|
|
|
|
{ -1, -1, -1, }, |
|
|
|
|
|
{ -1, -1, -1, }, |
|
|
|
|
|
{ -1, -1, -1, }, |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
return new TicTacToeBrett(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
SpielerModel[] StandardSpieler() |
|
|
SpielerModel[] StandardSpieler() |
|
@ -54,7 +49,7 @@ namespace MiniGamesTests |
|
|
{ |
|
|
{ |
|
|
// arrange
|
|
|
// arrange
|
|
|
TicTacToe spiel = new(StandardModel()); |
|
|
TicTacToe spiel = new(StandardModel()); |
|
|
int[,] brett = spiel.Brett; |
|
|
|
|
|
|
|
|
TicTacToeBrett brett = spiel.Brett; |
|
|
bool erwartetGesetzt = gesetzt; |
|
|
bool erwartetGesetzt = gesetzt; |
|
|
|
|
|
|
|
|
// act
|
|
|
// act
|
|
|