Package org.jbehave.examples.core.spring

Source Code of org.jbehave.examples.core.spring.CoreStoriesUsingSpringWithAnnotationConfiguration

package org.jbehave.examples.core.spring;

import org.jbehave.core.steps.spring.SpringApplicationContextFactory;
import org.springframework.context.ApplicationContext;

/**
* Using Spring's annotation configuration
*/
public class CoreStoriesUsingSpringWithAnnotationConfiguration extends CoreStoriesUsingSpring {

    protected ApplicationContext createContext() {
        return new SpringApplicationContextFactory("org.jbehave.examples.core.spring.SpringAnnotationConfiguration")
                .createApplicationContext();
    }


}
TOP

Related Classes of org.jbehave.examples.core.spring.CoreStoriesUsingSpringWithAnnotationConfiguration

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.