(self)
| 39 | class MujocoEngineTest(parameterized.TestCase): |
| 40 | |
| 41 | def setUp(self): |
| 42 | super().setUp() |
| 43 | self._physics = engine.Physics.from_xml_path(MODEL_PATH) |
| 44 | |
| 45 | def _assert_attributes_equal(self, actual_obj, expected_obj, attr_to_compare): |
| 46 | for name in attr_to_compare: |
nothing calls this directly
no test coverage detected