com.tngtech.jgiven.integration.spring.JGivenNamespaceHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgiven-spring Show documentation
Show all versions of jgiven-spring Show documentation
Module for using Spring dependency injection together with JGiven
package com.tngtech.jgiven.integration.spring;
import org.springframework.beans.factory.xml.NamespaceHandlerSupport;
public class JGivenNamespaceHandler extends NamespaceHandlerSupport {
@Override
public void init() {
registerBeanDefinitionParser( "annotation-driven", new AnnotationDrivenBeanDefinitionParser() );
}
}