Lines Matching refs:XAnnot
29 @pytest.mark.parametrize('XAnnot,XImplAnnot', [
35 def test_add_interface_multibinding_success(XAnnot, XImplAnnot):
51 .addMultibinding<XAnnot, XImplAnnot>();
57 std::vector<X*> multibindings = injector.getMultibindings<XAnnot>();
67 @pytest.mark.parametrize('XAnnot,XImplAnnot,ConstXImplAnnot', [
71 def test_add_interface_multibinding_const_target_error_install_first(XAnnot, XImplAnnot, ConstXImplAnnot):
88 .addMultibinding<XAnnot, XImplAnnot>();
98 @pytest.mark.parametrize('XAnnot,XImplAnnot,ConstXImplAnnot', [
102 def test_add_interface_multibinding_const_target_error_binding_first(XAnnot, XImplAnnot, ConstXImplAnnot):
118 .addMultibinding<XAnnot, XImplAnnot>()
129 @pytest.mark.parametrize('XAnnot,intAnnot', [
133 def test_error_not_base(XAnnot, intAnnot):
139 .addMultibinding<XAnnot, intAnnot>();