LevelTests CanNotCreateTileMapWithoutData 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 CanNotCreateTileMapWithoutData()
Examples

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