Package org.tamacat.groovy.test

Examples of org.tamacat.groovy.test.SampleCore


    }

    @Test
    public void testGetBeanRef() {
        di = new GroovyDIContainer("test.xml", loader);
        SampleCore core = di.getBean("Core3", SampleCore.class);
        assertNotNull(core);
        assertTrue(core instanceof Core);

        assertEquals("CoreName", core.getCoreName());
        assertNotNull(core.getCore());
    }
View Full Code Here

TOP

Related Classes of org.tamacat.groovy.test.SampleCore

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.