GameManagerTests LeftClickOutsideTheGridShouldDoNothing Method Delta Engine Documentation

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

public void LeftClickOutsideTheGridShouldDoNothing()
Examples

[Test]
public void LeftClickOutsideTheGridShouldDoNothing()
{
    manager.ReviveCellOnLeftClick(new Vector2D(.045f, .045f));
    Assert.AreEqual(0, manager.gameOfLife.Population);
}
See Also