GraphTests ThrowExceptionISearchedForWrongNode Method Delta Engine Documentation

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

public void ThrowExceptionISearchedForWrongNode()
Examples

[Test]
public void ThrowExceptionISearchedForWrongNode()
{
    Assert.Throws<Graph.InvalidNodeId>(() => graphAsPlusShape.GetNode(-1));
}
See Also