File tree 5 files changed +10
-10
lines changed
include/planning_test_utils
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ project(planning_test_utils)
4
4
find_package (autoware_cmake REQUIRED)
5
5
autoware_package()
6
6
7
- ament_auto_add_library(route_parser SHARED
8
- src/route_parser .cpp)
7
+ ament_auto_add_library(mock_data_parser SHARED
8
+ src/mock_data_parser .cpp)
9
9
10
- target_link_libraries (route_parser
10
+ target_link_libraries (mock_data_parser
11
11
yaml-cpp
12
12
)
13
13
14
14
if (BUILD_TESTING)
15
- ament_add_ros_isolated_gtest(test_route_parser
16
- test /test_route_parser .cpp)
15
+ ament_add_ros_isolated_gtest(test_mock_data_parser
16
+ test /test_mock_data_parser .cpp)
17
17
18
- target_link_libraries (test_route_parser
19
- route_parser )
18
+ target_link_libraries (test_mock_data_parser
19
+ mock_data_parser )
20
20
endif ()
21
21
22
22
ament_auto_package(INSTALL_TO_SHARE
File renamed without changes.
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " planning_test_utils/route_parser .hpp"
15
+ #include " planning_test_utils/mock_data_parser .hpp"
16
16
17
17
#include < rclcpp/logging.hpp>
18
18
Original file line number Diff line number Diff line change 16
16
17
17
// Assuming the parseRouteFile function is in 'RouteHandler.h'
18
18
#include " ament_index_cpp/get_package_share_directory.hpp"
19
- #include " planning_test_utils/route_parser .hpp"
19
+ #include " planning_test_utils/mock_data_parser .hpp"
20
20
21
21
namespace test_utils
22
22
{
Original file line number Diff line number Diff line change 14
14
15
15
#include " test_route_handler.hpp"
16
16
17
- #include " planning_test_utils/route_parser .hpp"
17
+ #include " planning_test_utils/mock_data_parser .hpp"
18
18
19
19
#include < rclcpp/rclcpp.hpp>
20
20
You can’t perform that action at this time.
0 commit comments