|
@ -42,13 +42,15 @@ namespace MiniGamesTests |
|
|
return new(StandardModel()); |
|
|
return new(StandardModel()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
[Fact] |
|
|
|
|
|
public void SpielerWechselTest() |
|
|
|
|
|
|
|
|
[Theory] |
|
|
|
|
|
[InlineData(0, 1)] |
|
|
|
|
|
[InlineData(1, 0)] |
|
|
|
|
|
public void SpielerWechselTest(int vorher, int nachher) |
|
|
{ |
|
|
{ |
|
|
// arrange
|
|
|
// arrange
|
|
|
TicTacToe spiel = StandardSpiel(); |
|
|
TicTacToe spiel = StandardSpiel(); |
|
|
spiel.AktiverSpielerIndex = 0; |
|
|
|
|
|
int erwarteterIndex = 1; |
|
|
|
|
|
|
|
|
spiel.AktiverSpielerIndex = vorher; |
|
|
|
|
|
int erwarteterIndex = nachher; |
|
|
|
|
|
|
|
|
// act
|
|
|
// act
|
|
|
spiel.SpielerWechsel(); |
|
|
spiel.SpielerWechsel(); |
|
|