org.plukh.dbunitguice.dbunit.DataSets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbunit-guice-mybatis Show documentation
Show all versions of dbunit-guice-mybatis Show documentation
DbUnit/Guice/MyBatis integration for testing of guicified DAO classes
The newest version!
package org.plukh.dbunitguice.dbunit;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface DataSets {
String[] value();
boolean override() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy