Package org.nanocontainer.testmodel

Examples of org.nanocontainer.testmodel.FredImpl


                );
        populateXMLContainer(childRecorder, childResource);
        MutablePicoContainer childContainer = childRecorder.getContainerProxy();
        assertNotNull(childContainer.getComponentInstance("fred"));
        assertNotNull(childContainer.getComponentInstance("wilma"));
        FredImpl fred = (FredImpl)childContainer.getComponentInstance("fred");
        Wilma wilma = (Wilma)childContainer.getComponentInstance("wilma");
        assertSame(wilma, fred.wilma());
    }
View Full Code Here

TOP

Related Classes of org.nanocontainer.testmodel.FredImpl

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.