Namespace: GameOfLife.Tests
Assembly: GameOfLife.Tests (in GameOfLife.Tests.dll) Version: 1.1.1.0 (1.1.1)
Assembly: GameOfLife.Tests (in GameOfLife.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Examples
[Test] public void SimulationRunsWithFourTickPerSecondWhenStarted() { manager.StartOrStopSimulation(); Assert.IsTrue(manager.IsSimulationRunning); manager.Update(); AdvanceTimeAndUpdateEntities(1); Assert.GreaterOrEqual(manager.gameOfLife.Generation, 4); }
See Also