(self)
| 206 | self.check_conversion(True, "bool") |
| 207 | |
| 208 | def test_list_string(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>") |
nothing calls this directly
no test coverage detected