Package org.zanata.seam.test

Examples of org.zanata.seam.test.ComponentWithNonRequiredBrokenChild


        SeamAutowire.instance().autowire(ComponentWithNonRequiredBrokenChild.class);
    }

    @Test
    public void ignoreBrokenChild() {
        ComponentWithNonRequiredBrokenChild test =
                SeamAutowire.instance().ignoreNonResolvable()
                        .autowire(ComponentWithNonRequiredBrokenChild.class);
        assertThat(test.getUnbuildableTestComponent(), nullValue());
    }
View Full Code Here

TOP

Related Classes of org.zanata.seam.test.ComponentWithNonRequiredBrokenChild

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.