标题: @Test中的expected参数都有什么 [打印本页] 作者: starfish1020 时间: 2016-2-17 14:23 标题: @Test中的expected参数都有什么 新手求助如题:@Test中的expected参数都有什么。
Junit4的操作手册中有没有啊?作者: wuxi88 时间: 2016-2-18 13:45
JUnit4:Test文档中的解释:
The Test annotation supports two optional parameters.
The first, expected, declares that a test method should throw an exception.
If it doesn't throw an exception or if it throws a different exception than the one declared, the test fails.
可以看下这个链接,写的真的是挺详细的:http://www.cnblogs.com/mengdd/archive/2013/04/13/3019278.html