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

Structural Testing
  • 时间:2024-03-20 13:03:17

Structural Testing


Previous Page Next Page  

What is Structural Testing ?

结构测试,也称为玻璃箱检测或白色箱子检测,是一种根据软件结构或内部实施的知识进行测试的方法。

结构测试的其他名称包括明确的箱子检测、开放式箱子检测、逻辑驱动的测试或由路径驱动的测试。

Structural Testing Techniques:

    这一技术旨在以最低程度的测试来实施所有方案说明。

    这一技术正在进行一系列测试,以确保所有分支机构至少接受一次测试。

    这一技术相当于测试所有可能的道路,这意味着每个声明和分支都包括在内。

Calculating Structural Testing Effectiveness:

Statement Testing = (Number of Statements Exercised / Total Number of Statements) x 100 %

Branch Testing = (Number of decisions outcomes tested / Total Number of decision Outcomes) x 100 %

Path Coverage = (Number paths exercised / Total Number of paths in the program) x 100 %

Advantages of Structural Testing:

    A. 部队试探师认真解释执行情况

    “隐藏”代码中的重复错误

    阐述《死法典》或与最佳方案拟订做法有关的其他问题。

Disadvantages of Structural Box Testing:

    费用高昂,既需要花费时间,也要花钱进行白箱检测。

    无意中错失几条法典的每一种可能性。

    有必要深入了解方案拟订语言,以进行白箱检测。

Advertisements