Package org.zanata.seam.test

Examples of org.zanata.seam.test.ComponentWithChildCycle


        };
    }

    @Test
    public void cyclesAllowed() {
        ComponentWithChildCycle parent =
                SeamAutowire.instance().allowCycles()
                        .autowire(ComponentWithChildCycle.class);

        assertThat(parent.getCyclicChildComponent(), notNullValue());
        assertThat(parent.getCyclicChildComponent().getCyclicParentComponent(),
                notNullValue());
    }
View Full Code Here

TOP

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

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.