-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched to yaml-based param in filter test
- Loading branch information
1 parent
b74a1ee
commit 88d6b8a
Showing
4 changed files
with
73 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
test/control_filters/test_gravity_compensation_parameters.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
TestGravityCompensationAllParameters: | ||
ros__parameters: | ||
world_frame: world | ||
sensor_frame: sensor | ||
CoG: | ||
force: [0.0, 0.0, -49.05] | ||
pos: [0.0, 0.0, 0.0] | ||
|
||
TestGravityCompensationMissingParameters: | ||
ros__parameters: | ||
world_frame: world | ||
|
||
TestGravityCompensationInvalidThenFixedParameter: | ||
ros__parameters: | ||
world_frame: world | ||
sensor_frame: sensor | ||
CoG: | ||
force: [0.0, 0.0, -49.05] | ||
pos: [0.0, 0.0] | ||
|
||
TestGravityCompensationMissingTransform: | ||
ros__parameters: | ||
world_frame: world | ||
sensor_frame: sensor | ||
CoG: | ||
force: [0.0, 0.0, -49.05] | ||
pos: [0.0, 0.0, 0.0] | ||
|
||
TestGravityCompensationComputation: | ||
ros__parameters: | ||
world_frame: world | ||
sensor_frame: world | ||
CoG: | ||
force: [0.0, 0.0, -49.05] | ||
pos: [0.0, 0.0, 0.0] |