()
| 811 | # |
| 812 | ### |
| 813 | def test_register_cmdfinalization_hook_parameter_count() -> None: |
| 814 | app = PluggedApp() |
| 815 | with pytest.raises(TypeError): |
| 816 | app.register_cmdfinalization_hook(app.cmdfinalization_hook_not_enough_parameters) |
| 817 | with pytest.raises(TypeError): |
| 818 | app.register_cmdfinalization_hook(app.cmdfinalization_hook_too_many_parameters) |
| 819 | |
| 820 | |
| 821 | def test_register_cmdfinalization_hook_no_parameter_annotation() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…