(self)
| 200 | self.check_conversion(3, "long int") |
| 201 | |
| 202 | def test_scalar_float(self): |
| 203 | self.check_conversion(3.1415, "double") |
| 204 | |
| 205 | def test_scalar_bool(self): |
| 206 | self.check_conversion(True, "bool") |
nothing calls this directly
no test coverage detected