Added test for AStarPathfinder.

This commit is contained in:
David Williams
2011-07-02 00:57:41 +01:00
parent ea5f0dfcc7
commit 1472a6a304
4 changed files with 149 additions and 13 deletions

View File

@ -68,15 +68,6 @@ void TestArray::testReadWrite()
}
QCOMPARE(total, expectedTotal);
/*const PolyVox::uint16_t g_uVolumeSideLength = 128;
LargeVolume<PolyVox::uint8_t> volData(g_uVolumeSideLength, g_uVolumeSideLength, g_uVolumeSideLength);
volData.tidyUpMemory(0);
QCOMPARE(volData.getWidth(), g_uVolumeSideLength);
QCOMPARE(volData.getHeight(), g_uVolumeSideLength);
QCOMPARE(volData.getDepth(), g_uVolumeSideLength);*/
}
QTEST_MAIN(TestArray)