1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-07-08 13:54:52 +02:00
openrw/tests/test_Chase.cpp
2019-01-21 20:31:31 +00:00

16 lines
482 B
C++

#include <boost/test/unit_test.hpp>
#include <data/Chase.hpp>
#include "test_Globals.hpp"
BOOST_AUTO_TEST_SUITE(ChaseTests, DATA_TEST_PREDICATE)
BOOST_AUTO_TEST_CASE(test_load_keyframes) {
std::vector<ChaseKeyframe> keyframes;
BOOST_REQUIRE(ChaseKeyframe::load(
Global::getGamePath() + "/data/paths/CHASE0.DAT", keyframes));
BOOST_REQUIRE(keyframes.size() == 5400);
BOOST_CHECK_CLOSE(keyframes[0].position.x, 273.5422, 0.1);
}
BOOST_AUTO_TEST_SUITE_END()