Package org.impalaframework.spring.module

Examples of org.impalaframework.spring.module.ModuleDefinitionPostProcessor.postProcessBeforeInitialization()


    public final void testPostProcessBeforeInitialization() {
        SimpleRootModuleDefinition rootDefinition = new SimpleRootModuleDefinition("project1", "context.xml");
        ModuleDefinitionPostProcessor postProcessor = new ModuleDefinitionPostProcessor(rootDefinition);
        TestSpecAware testAware = new TestSpecAware();
        postProcessor.postProcessBeforeInitialization(testAware, null);
        assertSame(rootDefinition, testAware.getModuleDefinition());
       
        assertSame(testAware, postProcessor.postProcessAfterInitialization(testAware, null));
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.