Namespace: GameOfDeath
Assembly: GameOfDeath (in GameOfDeath.exe) Version: 1.1.1.0 (1.1.1)
Tests: GameOfDeath.Tests.GameOfDeathTests
1 unit tests call GameOfDeath.GameOfDeath.GenerationCount
Assembly: GameOfDeath (in GameOfDeath.exe) Version: 1.1.1.0 (1.1.1)
Syntax
Property Value
Type: Int32Remarks
Examples
[Test] public void CreateSimplestGameOfLifeEverWith1X1() { game = new GameOfDeath(1, 1); Assert.AreEqual(0, game.GenerationCount); game.Update(); Assert.AreEqual(1, game.GenerationCount); }
See Also