TwoHumanNetworkGameTests NewGameInstructions Method Delta Engine Documentation

Namespace: Drench.Tests.Games
Assembly: Drench.Tests (in Drench.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void NewGameInstructions()
Examples

[Test]
public void NewGameInstructions()
{
    Assert.AreEqual("*** Player 1: 1  (Your turn) ***", game1.upperText.Text);
    Assert.AreEqual("Player 2: 1  ", game1.lowerText.Text);
    Assert.AreEqual("*** Player 1: 1  (Waiting for other player's turn) ***",
        game2.upperText.Text);
    Assert.AreEqual("Player 2: 1  ", game2.lowerText.Text);
}
See Also