(self, mjcf_model, other)
| 51 | class ElementTest(parameterized.TestCase): |
| 52 | |
| 53 | def assertIsSame(self, mjcf_model, other): |
| 54 | self.assertTrue(mjcf_model.is_same_as(other)) |
| 55 | self.assertTrue(other.is_same_as(mjcf_model)) |
| 56 | |
| 57 | def assertIsNotSame(self, mjcf_model, other): |
| 58 | self.assertFalse(mjcf_model.is_same_as(other)) |
no test coverage detected