diff --git a/routing/routing_tests/vehicle_model_test.cpp b/routing/routing_tests/vehicle_model_test.cpp index 85e4f89b2e..6a55150cf3 100644 --- a/routing/routing_tests/vehicle_model_test.cpp +++ b/routing/routing_tests/vehicle_model_test.cpp @@ -1,10 +1,14 @@ #include "../../testing/testing.hpp" #include "../vehicle_model.hpp" + #include "../../indexer/classificator.hpp" +#include "../../indexer/classificator_loader.hpp" #include "../../indexer/feature.hpp" + #include "../../base/macros.hpp" + namespace { @@ -58,6 +62,8 @@ void CheckOneWay(vector types, bool expectedValue) UNIT_TEST(VehicleModel_MaxSpeed) { + classificator::Load(); + TestVehicleModel vehicleModel; TEST_EQUAL(vehicleModel.GetMaxSpeed(), 150, ()); }