(output_path: pathlib.Path, expected: set[str])
| 716 | |
| 717 | |
| 718 | def get_checker(output_path: pathlib.Path, expected: set[str]) -> Callable: |
| 719 | def check() -> None: |
| 720 | assert_sets_equality_from_path(output_path, expected) |
| 721 | |
| 722 | return LogicChecker(check) |
| 723 | |
| 724 | |
| 725 | @pytest.mark.parametrize( |
no test coverage detected