(self, i, j)
| 57 | def test_multiple_inheritance_python(): |
| 58 | class MI1(m.Base1, m.Base2): |
| 59 | def __init__(self, i, j): |
| 60 | m.Base1.__init__(self, i) |
| 61 | m.Base2.__init__(self, j) |
| 62 | |
| 63 | class B1: |
| 64 | def v(self): |
no outgoing calls
no test coverage detected