(self)
| 259 | self.assertEqual(anno, {"arg": "x"}) |
| 260 | |
| 261 | def test_function(self): |
| 262 | def f(x: int, y: doesntexist): |
| 263 | pass |
| 264 | |
| 265 | anno = get_annotations(f, format=Format.STRING) |
| 266 | self.assertEqual(anno, {"x": "int", "y": "doesntexist"}) |
| 267 | |
| 268 | def test_expressions(self): |
| 269 | def f( |
nothing calls this directly
no test coverage detected