Package org.apache.fulcrum.spring

Examples of org.apache.fulcrum.spring.SpringFrameworkService


     *
     * @throws Exception the test failed
     */
    public void testGetSpringFrameworkService() throws Exception
    {
        SpringFrameworkService service = (SpringFrameworkService) this.container.lookup("springFrameworkService");
        assertNotNull(service);
    }
View Full Code Here


     *
     * @throws Exception the test failed
     */
    public void testAvalonIntoSpringIntegration() throws Exception
    {
        SpringFrameworkService service = (SpringFrameworkService) this.container.lookup("springFrameworkService");
        AbstractApplicationContext ctx = service.getAbstractApplicationContext();
       
        // ensure that the Avalon SystemPropertyService updated the system properties (so it was properly started)
        assertTrue(System.getProperty("FOO").equals("BAR"));

        CustomAvalonService customAvalonService;
View Full Code Here

TOP

Related Classes of org.apache.fulcrum.spring.SpringFrameworkService

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.