Namespace: FindTheWord
Assembly: FindTheWord (in FindTheWord.exe) Version: 1.1.1.0 (1.1.1)
Tests: FindTheWord.Tests.StartupScreenTests
1 unit tests call FindTheWord.StartupScreen.StartGame
Assembly: FindTheWord (in FindTheWord.exe) Version: 1.1.1.0 (1.1.1)
Syntax
Remarks
Examples
[Test, Ignore] public void RaisingGameStarted() { int isGameStartedCount = 0; var screen = Resolve<StartupScreen>(); screen.GameStarted += () => isGameStartedCount++; screen.StartGame(); Assert.AreEqual(1, isGameStartedCount); Resolve<Window>().CloseAfterFrame(); }
See Also