Junit单元测试学习笔记(一)
使用方法下载junit
https://github.com/junit-team/junit/wiki/Download-and-Install
使用junit jar包
l 一个简单的test
1.创建类
+ View Code
2.创建test case
TestCase类给我们提供了setUp方法和tearDown方法,setUp方法的内容在测试你编写的TestCase子类的每个testX
xxx方法之前都会运行,而tearDown方法的内容在每个testXxxx方法结束以后都会执行。
我们创建setUp方法:
+ View Code
3.结果
If add “@Ignore("testMultiplication() Not yet implemented") “
Then the test case will be ignored.
:victory:
页:
[1]