(self, em1)
| 44 | with pytest.raises(IndexError): |
| 45 | em1[4] |
| 46 | def test_unknown_symbol(self, em1): |
| 47 | with pytest.raises(ArithmeticError): |
| 48 | em1["XY"] |
| 49 | def test_wrong_argument_type(self, em1): |
| 50 | with pytest.raises(NotImplementedError): |
| 51 | em1[1.23] |
nothing calls this directly
no outgoing calls
no test coverage detected