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

Stub
  • 时间:2024-03-20 13:00:31

Stub


Previous Page Next Page  

What is a Stub?

在自上而下的一体化测试中使用了图表,以模拟尚未整合的低级单元的行为。 图表是临时替换一个称为模块的单元,产出与实际产品产出相同。

当软件需要与外部系统互动时,也使用图表。

Stub - Flow Diagram

Role of Stubs in Top Down Integration Testing

上述图表明确指出,单元1、2和3可供整合,而以下模块仍在开发之中,目前无法整合。 因此, 图表用于测试这些模块。 一体化秩序是:

1,2
1,3
2,Stub 1
2,Stub 2
3,Stub 3
3,Stub 4

Testing Approach:

+ 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
Advertisements