• 软件测试词典

自下而上测试


什么是自下而上测试?

较低层次结构中的每个组件都会单独进行测试,然后测试依赖于这些组件的组件。

自下而上的集成 - 流程图

测试生命周期中的自下而上测试

自下而下方法集成的顺序为:

4,2
5,2
6,3
7,3
2,1
3,1

测试方法:

+ Firstly, Test 4,5,6,7 individually using drivers.
+ Test 2 such that it calls 4 and 5 separately. If an error occurs we know that the problem is in one of the modules.
+ Test 1 such that it calls 3 and If an error occurs we know that the problem is in 3 or in the interface between 1 and 3

尽管顶级组件是最重要的,但最后使用此策略进行了测试。在自下而上的方法中,在测试组件 4、5、6、7 时,组件 2 和 3 被驱动程序替换。它们通常比存根更复杂。