Home | History | Annotate | Download | only in tests

Lines Matching refs:XAnnot

25 @pytest.mark.parametrize('XAnnot', [
29 def test_multibindings_bind_instance_ok(XAnnot):
37 .addInstanceMultibinding<XAnnot, X>(x);
43 std::vector<X*> multibindings = injector.getMultibindings<XAnnot>();
53 @pytest.mark.parametrize('XAnnot', [
57 def test_multibindings_bind_const_instance_error(XAnnot):
65 .addInstanceMultibinding<XAnnot, X>(x);
70 '|no matching function for call to .fruit::PartialComponent<.*>::addInstanceMultibinding(<XAnnot,X>)?\(const X&\).'
77 @pytest.mark.parametrize('XAnnot', [
81 def test_multibindings_bind_instance_vector(XAnnot):
89 .addInstanceMultibindings<XAnnot, X>(values);
95 std::vector<X*> multibindings = injector.getMultibindings<XAnnot>();
106 @pytest.mark.parametrize('XAnnot', [
110 def test_multibindings_bind_const_instance_vector_error(XAnnot):
118 .addInstanceMultibindings<XAnnot, X>(values);
130 @pytest.mark.parametrize('XAnnot', [
134 def test_multibindings_bind_instance_vector_of_consts_error(XAnnot):
142 .addInstanceMultibindings<XAnnot, X>(values);