AStarSearchTests GraphWithNoNodesHasNoPath 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 GraphWithNoNodesHasNoPath()
Examples

[Test]
public void GraphWithNoNodesHasNoPath()
{
    Assert.IsFalse(aStar.Search(new Graph(0), 0, 0));
}
See Also