GameManagerTests RightClickOutsideTheGridShouldDoNothing 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 RightClickOutsideTheGridShouldDoNothing()
Examples

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