GameLevelTests RestartLevel Method Delta Engine Documentation

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

public void RestartLevel()
Examples

[Test, CloseAfterFirstFrame, Ignore]
public void RestartLevel()
{
    Assert.Less(player.Gold, 4000);
    gameLevel.Restart();
    Assert.AreEqual(4000, player.Gold);
}
See Also