(self)
| 209 | self.check_conversion(["spam", "eggs"], "vector<string>") |
| 210 | |
| 211 | def test_list_int(self): |
| 212 | self.check_conversion([1, 2, 3], "vector<long int>") |
| 213 | |
| 214 | def test_list_float(self): |
| 215 | self.check_conversion([1., 2., 3.], "vector<double>") |
nothing calls this directly
no test coverage detected