CreepWaveTests CheckCreepList Method Delta Engine Documentation

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

public void CheckCreepList()
Examples

[Test, CloseAfterFirstFrame]
public void CheckCreepList()
{
    Assert.AreEqual(7, creepWave.CreepsAndGroupsList.Count);
    Assert.IsTrue(creepWave.CreepsAndGroupsList.Contains(CreepType.Cloth));
    Assert.IsTrue(creepWave.CreepsAndGroupsList.Contains(CreepType.Glass));
    Assert.IsTrue(creepWave.CreepsAndGroupsList.Contains(CreepType.Iron));
    Assert.IsTrue(creepWave.CreepsAndGroupsList.Contains(CreepType.Paper));
    Assert.IsTrue(creepWave.CreepsAndGroupsList.Contains(CreepType.Plastic));
    Assert.IsTrue(creepWave.CreepsAndGroupsList.Contains(CreepType.Sand));
    Assert.IsTrue(creepWave.CreepsAndGroupsList.Contains(CreepType.Wood));
}
See Also