(self, value, ee, regex)
| 174 | assert held_type == check_type |
| 175 | |
| 176 | def check_raises(self, value, ee, regex): |
| 177 | with pytest.raises(ee, match=regex): |
| 178 | _py_to_any_to_py(value) |
| 179 | |
| 180 | def test_none(self): |
| 181 | self.check_conversion(None, "void") |
no outgoing calls
no test coverage detected