Package com.mycompany

Examples of com.mycompany.SimpleComponent


        propFile.deleteOnExit();
        List<String> initial = new ArrayList<String>();
        initial.add("/test/SimpleComponentGlobalScope");
        NucleusUtils.createInitial(configpath, initial);
        Nucleus n = NucleusUtils.startNucleus(configpath);
        SimpleComponent testComponent = null;
        try {
            testComponent = (SimpleComponent) n.resolveName("/test/SimpleComponentGlobalScope");
            assertNotNull("Could not resolve test component", testComponent);
            assertTrue(
                    "Test component did not start up cleanly.", testComponent.isCleanStart
View Full Code Here

TOP

Related Classes of com.mycompany.SimpleComponent

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.