- 软件测试词典
- 家
自上而下的集成测试
什么是自上而下的集成测试?
自顶向下集成测试是一种集成测试技术,用于模拟尚未集成的较低级别模块的Behave。存根是充当被调用模块的临时替换的模块,并提供与实际产品相同的输出。
“被调用”模块的替代品称为“存根”,当软件需要与外部系统交互时也会使用它。
存根 - 流程图:
上图清楚地表明模块 1、2 和 3 可用于集成,而以下模块仍在开发中,目前无法集成。因此,存根用于测试模块。集成的顺序为:
1,2 1,3 2,Stub 1 2,Stub 2 3,Stub 3 3,Stub 4
测试方法:
+ Firstly, the integration between the modules 1,2 and 3 + Test the integration between the module 2 and stub 1,stub 2 + Test the integration between the module 3 and stub 3,stub 4