()
| 109 | |
| 110 | |
| 111 | def test_classmethod() -> None: |
| 112 | doc = generate_func_documentation(Bar.func_baz) |
| 113 | assert doc.name == "func_baz" |
| 114 | assert doc.description == "This is func_baz." |
| 115 | assert doc.param_descriptions == {"a": "The first argument.", "b": "The second argument."} |
nothing calls this directly
no test coverage detected