English 中文(简体)
Software Testing Dictionary

A

B

C

D

E

F

G

H

I

K

L

M

N

O

P

Q

R

S

T

U

V

W

Useful Resources

Selected Reading

Bottom Up Testing
  • 时间:2024-03-21 05:05:52

Bottom Up Testing


Previous Page Next Page  

What is Bottom Up Testing?

低等级的每个组成部分都单独测试,然后测试依赖这些组成部分的成分。

Bottom Up Integration - Flow Diagram

Bottom Up Testing in Test Life Cycle

自下而上的一体化秩序是:

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

Testing Approach :

+ Firstly, Test 4,5,6,7 inspanidually 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

尽管顶级构成部分是最重要的,但最后使用这一战略进行了测试。 在自下而上的方法中,构成部分2和3由司机取代,同时测试构成部分4、5、6、7。 它们一般比麻烦更为复杂。

Advertisements