TestCase:创建本身,可以指定TestCase 准备运行的测试方法名称,保存在私
有属性fName。
countTestCases:返回TestCase 数目,直接返回1
name:deprecated,建议使用getName,返回TestCase 当前准备允许的测试方法
的名称(私有属性fName)
run:运行TestCase,如果没有指定结果存储的TestResult,将调用createResu(lt
方法。注意,TestCase 与TestResult 会有互相调用。整个运行流程如下:
1、TestCase.run 调用TestResult.run
2、TestResult.run 调用TestResult .StartTest
3、TestResult.run 创建一个Anonymous 类,实现接口Portectable
4、在Portectable. protect 方法中调用TestCase .runBare
5、通过运行Portectable.runBare 调用runBare,通过Exception 捕获增加错误
及失败报告
runBare:不使用TestResult 直接运行
runTest:运行测试,注意每调用runTest 只运行当前fName 指定的方法
文章来源于领测软件测试网 https://www.ltesting.net/