Lines Matching refs:YVariant
305 @pytest.mark.parametrize('YVariant', [
316 def test_register_constructor_with_param_success(WithAnnotation, YVariant):
320 X(YVariant) {
332 .registerConstructor<X(WithAnnotation<YVariant>)>();
349 @pytest.mark.parametrize('YVariant', [
356 def test_register_constructor_with_param_const_binding_success(WithAnnotation, YVariant):
360 X(YVariant) {
374 .registerConstructor<X(WithAnnotation<YVariant>)>();
391 @pytest.mark.parametrize('YVariant', [
397 def test_register_constructor_with_param_error_nonconst_param_required(WithAnnotation, YAnnotRegex, YVariant):
401 X(YVariant);
409 .registerConstructor<X(WithAnnotation<YVariant>)>();
423 @pytest.mark.parametrize('YVariant', [
429 def test_register_constructor_with_param_error_nonconst_param_required_install_after(WithAnnotation, YAnnotRegex, YVariant):
433 X(YVariant);
440 .registerConstructor<X(WithAnnotation<YVariant>)>()
561 @pytest.mark.parametrize('YVariant,YVariantRegex', [
569 def test_register_constructor_with_param_error_type_not_injectable(YVariant, YVariantRegex):
573 X(YVariant);
578 .registerConstructor<X(YVariant)>();