(self)
| 181 | self.check_conversion(None, "void") |
| 182 | |
| 183 | def test_set(self): |
| 184 | # Sets are converted to lists |
| 185 | self.check_inexact_conversion({"a", "b"}, "vector<string>") |
| 186 | |
| 187 | def test_empty_list(self): |
| 188 | self.check_conversion([]) |
nothing calls this directly
no test coverage detected