(request)
| 798 | return |
| 799 | |
| 800 | def xunit_setup_class_fixture(request) -> Generator[None]: |
| 801 | cls = request.cls |
| 802 | if setup_class is not None: |
| 803 | func = getimfunc(setup_class) |
| 804 | _call_with_optional_argument(func, cls) |
| 805 | yield |
| 806 | if teardown_class is not None: |
| 807 | func = getimfunc(teardown_class) |
| 808 | _call_with_optional_argument(func, cls) |
| 809 | |
| 810 | fixtures.register_fixture( |
| 811 | # Use a unique name to speed up lookup. |
nothing calls this directly
no test coverage detected