GameTests InitializeGame Method Delta Engine Documentation

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

public void InitializeGame()
Examples

[Test, Ignore]
public void InitializeGame()
{
    var startupScreen = Resolve<StartupScreen>();
    var gameScreen = Resolve<GameScreen>();
    new Game(startupScreen, gameScreen);
    startupScreen.StartGame();
    Assert.IsTrue(startupScreen.IsVisible);
}
See Also