一、什么是单元测试?
写了个类,要给别人用,会不会有bug?怎么办?测试一下。
用main方法测试好不好?不好!为什么?
1.不能一起运行!
2.大多数情况下需要人为的观察输出结果是否正确。
二、为什么要进行单元测试?
1.重用测试,应对将来的实现的变化。
2.提高士气,明确知道我的东西是没问题的。
三、JUnit4 HelloWorld
1.new project
2.建立类
3.建立testcase
四、放弃旧的断言使用hamcrest断言
注意:导入hamcres的jar包后eclipse有可能会报错,项目配置中删除自带的JUnit的jar包,再重新添加就好了
- assertThat
- 使用hamcrest的匹配方法更自然
示例:
a)
assertThat( n, allOf( greaterThan(1), lessThan(15) ) );
assertThat( n, anyOf( greaterThan(16), lessThan(8) ) );
assertThat( n, anything() );
assertThat( str, is( "bjsxt" ) );
assertThat( str, not( "bjxxt" ) );
b)
assertThat( str, containsString( "bjsxt" ) );
assertThat( str, endsWith("bjsxt" ) );
assertThat( str, startsWith( "bjsxt" ) );
assertThat( n, equalTo( nExpected ) );
assertThat( str, equalToIgnoringCase( "bjsxt" ) );
assertThat( str, equalToIgnoringWhiteSpace( "bjsxt" ) );
c)
assertThat( d, closeTo( 3.0, 0.3 ) );
assertThat( d, greaterThan(3.0) );
assertThat( d, lessThan (10.0) );
assertThat( d, greaterThanOrEqualTo (5.0) );
assertThat( d, lessThanOrEqualTo (16.0) );
d)
assertThat( map, hasEntry( "bjsxt", "bjsxt" ) );
assertThat( iterable, hasItem ( "bjsxt" ) );
assertThat( map, hasKey ( "bjsxt" ) );
assertThat( map, hasValue ( "bjsxt" ) );
五、Failure和Error
1.Failure是指测试失败
2.Error是指测试程序本身出错
六、JUnit4 Annotation
1. @Test: 测试方法
a) (expected=XXException.class) :预期中的异常,如果抛了该异常JUnit就证明认为是对的,否则是错的。
b) (timeout=xxx) :预期的运行时间,如果在指定时间内运行完成则是对的,否则是错的。
2. @Ignore: 被忽略的测试方法
3. @Before: 每一个测试方法之前运行
4. @After: 每一个测试方法之后运行
5. @BeforeClass: 所有测试开始之前运行
6. @AfterClass: 所有测试结束之后运行
七、运行多个测试
注意:
- 遵守约定,比如:
a) 类放在test包中
b) 类名用XXXTest结尾
c) 方法用testMethod命名