我是能够实现与非静态的设置方法@BeforeAll
注解。 这似乎是正常工作,因为只有得到调用一次。 我有点迷惑作为文档@BeforeAll
说的方法是静态的。 请解释。
@TestMethodOrder(OrderAnnotation.class)
@SpringJUnitWebConfig(locations = { "classpath:service.xml" })
@TestInstance(Lifecycle.PER_CLASS)
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Inherited
public class MyTest
{
@BeforeAll
public void setup() throws Exception {...}
}