CellTests CellIsDeadAfterCallingKill 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 CellIsDeadAfterCallingKill()
Examples

[Test, CloseAfterFirstFrame]
public void CellIsDeadAfterCallingKill()
{
    cell.Revive();
    cell.Kill();
    Assert.IsFalse(cell.IsAlive);
}
See Also