Removed debug code.

This commit is contained in:
David Williams
2011-07-06 21:21:22 +01:00
parent 28872ce7a9
commit ed63e9c335

View File

@ -117,12 +117,6 @@ void TestAStarPathfinder::testExecute()
//Execute the pathfinder.
pathfinder.execute();
for(std::list<Vector3DInt32>::iterator iterResult = result.begin(); iterResult != result.end(); iterResult++)
{
Vector3DInt32 res = *iterResult;
std::cout << "Vector3DInt32(" << res.getX() << "," << res.getY() << "," << res.getZ() << ")," << std::endl;
}
//Make sure the right number of steps were created.
QCOMPARE(result.size(), static_cast<size_t>(24));