@Retention(RUNTIME) @Documented @Target({METHOD,TYPE,PACKAGE}) public @interface DbUnitDataSet
@DbUnitDataSet("/dataset/xml")
public class TestClass {
@Rule
public DbUnitRule rule = new DbUnitRule(connectionFactory);
@Test
public void test1() {
}
@Test
@DbUnitDataSet("/dataset/xml/table1.xml")
public void test2() {
}
}
String[] value
Copyright © 2017. All rights reserved.