(self, v1)
| 54 | with pytest.raises(IndexError): |
| 55 | v1[3] |
| 56 | def test_components(self, v1): |
| 57 | assert v1[0] == v1x, "Wrong x component." |
| 58 | assert v1[1] == v1y, "Wrong y component." |
| 59 | assert v1[2] == v1z, "Wrong z component." |
| 60 | |
| 61 | class Test___setitem__(): |
| 62 | def test_no_integer_index(self, v1): |
nothing calls this directly
no outgoing calls
no test coverage detected