PlayerTests Initialize 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 Initialize()
Examples

[Test, CloseAfterFirstFrame]
public void InitializingMaxLivesAlsoInitializedLivesLeftForPlayer()
{
    player.MaxLives = 10;
    Assert.AreEqual(10, player.MaxLives);
    Assert.AreEqual(10, player.LivesLeft);
}
See Also