()
| 13 | |
| 14 | @pytest.fixture |
| 15 | def sample_model(): |
| 16 | import pinocchio as pin |
| 17 | |
| 18 | model = pin.buildSampleModelManipulator() |
| 19 | rdata = model.createData() |
| 20 | return model, rdata |
| 21 | |
| 22 | |
| 23 | def test_gravity_comp_configuration(sample_model): |
nothing calls this directly
no test coverage detected