always_fly 发表于 2018-4-2 13:36:26

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.


梦想家 发表于 2018-4-4 15:44:03

:victory:
页: [1]
查看完整版本: Junit单元测试学习笔记(一)