LevelTests CanNotCreateTileMapWithoutValidData Method Delta Engine Documentation

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

public void CanNotCreateTileMapWithoutValidData()
Examples

[Test, CloseAfterFirstFrame]
public void CanNotCreateTileMapWithoutValidData()
{
    const string MapData = "   ";
    Assert.Throws<TileMap.NoTileMapData>(() => new TileMap(MapData));
}
See Also