@After,@before在测试用例中不起作用
我已经开始测试,现在我想使用,但我的应用程序只运行该方法并在控制台上提供输出@After
@Before
@Test
@Before
以前
但是,如果我删除并运行@Test。我的代码在这里:@After
@Before
public class TestPractise extends AbstractTransactionalDataSourceSpringContextTests{
@Before
public void runBare(){
System.out.println("before");
}
@Test
public void testingMethod(){
System.out.println("testing");
}
@After
public void setDirty(){
System.out.println("after");
}
}
为什么不同时工作?@After
@Test
@before