Package hivemind.test.services

Examples of hivemind.test.services.SimpleModule


*/
public class TestRegistryImpl extends HiveMindTestCase
{
    public void testGetModuleMessages() throws Exception
    {
        final Registry reg = buildFrameworkRegistry(new SimpleModule());
        final Messages msgs = reg.getModuleMessages( "hivemind.test.services" );
        assertEquals( "Test Message", msgs.getMessage( "test.message" ) );
    }
View Full Code Here


        verifyControls();
    }

    public void testIntegration() throws Exception
    {
        Registry r = buildFrameworkRegistry(new SimpleModule());

        SimpleService a = (SimpleService) r.getService(SimpleService.class);

        AdderWrapper aw1 = new AdderWrapper(a);
View Full Code Here

TOP

Related Classes of hivemind.test.services.SimpleModule

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.