标签:before 单元测试 方法 for with 其他 常用 class 单元
@Test :
将方法修饰成测试方法
@Before:
在每个测试方法运行前运行
@After:
在每个测试方法运行结束后执行
@Ignore:
忽略该测试方法
@RunWith
更改测试运行器
@BeforeClass:
在所有方法运行前执行
@AfterClass:
在所有方法执行后执行
其中@Test是最常用的,@Before也是极其常用的,其他的都用的少。
标签:before 单元测试 方法 for with 其他 常用 class 单元
原文地址:https://www.cnblogs.com/macht/p/11637947.html