(self)
| 203 | self.check_conversion(3.1415, "double") |
| 204 | |
| 205 | def test_scalar_bool(self): |
| 206 | self.check_conversion(True, "bool") |
| 207 | |
| 208 | def test_list_string(self): |
| 209 | self.check_conversion(["spam", "eggs"], "vector<string>") |
nothing calls this directly
no test coverage detected