(cls, name: str, args, expected: str, ctx: Context)
| 196 | ) |
| 197 | @pytest.mark.parametrize("cls", [Argument, Input]) |
| 198 | def test_input_field_param(cls, name: str, args, expected: str, ctx: Context): |
| 199 | assert _InputField(ctx, name, cls(*args)).as_param() == expected |
| 200 | |
| 201 | |
| 202 | def test_input_field_param_expected_type(ctx: Context): |
nothing calls this directly
no test coverage detected