Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add integration tests to URDF importer #10

Draft
wants to merge 1 commit into
base: mp/articulations_urdf_import
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Gems/ROS2/Code/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,33 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED)
ly_add_googletest(
NAME Gem::${gem_name}.Editor.Tests
)

# integration test for URDF importer
ly_add_target(
NAME ROS2.URDF.importer.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
NAMESPACE Gem
FILES_CMAKE
urdf_importer_physics_tests_supported_files.cmake
INCLUDE_DIRECTORIES
PRIVATE
Source
Tests
BUILD_DEPENDENCIES
PRIVATE
AZ::AzTestShared
AZ::AzToolsFramework
Legacy::CryCommon
Legacy::EditorCommon
Legacy::Editor.Headers
AZ::AzManipulatorTestFramework.Static
Gem::ROS2.Editor.Static
RUNTIME_DEPENDENCIES
Gem::PhysX.Editor
)

ly_add_googletest(
NAME Gem::ROS2.URDF.importer.Tests
)
endif()
endif()
endif()
Loading