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

Anomaly
  • 时间:2024-03-21 07:04:13

Anomaly


Previous Page Next Page  

What is an Anomaly?

在软件测试中,Anomaly提到的结果不同于预期的结果。 这种行为可能产生于文件或测试者的概念和经验。

Anomaly也可以提到可使用性问题,因为检测器可能按照规格行事,但它仍然能够改进可使用性。 有时,反常也可以称为缺陷。

What is an Anomaly Report?

以下参数涉及典型的异常情况报告:

    副监察员

    内容提要

    缺陷说明

    缺陷状况

    复制缺陷的步骤

    严重程度

    优先程度

    Bug Lobed 日期

    标的面积

    撰稿人/出版商的评论

What are Data Flow Anomapes?

在进行盒式测试或静态测试时,数据流动异常。 数据流动异常现象是以行动顺序为基础的两种特性。 他们的定义是(d),被杀(k),使用(u)。 根据这三类行动,有九种可能的组合,它们是:d、dk、d、k、ku、ud、uk、u。 下表明确显示,其中一种是接受的,其中一种是怀疑是异常的。

CombinationDescriptionAnomaly possibipties
ddDefined the data objects twiceHarmless but suspicious
dkDefined the data object but killed it without using it.Bad Programming Practice
duDefined the data object and using itNOT an Anomaly
kdKilled the Data Object and redefinedNOT an Anomaly
kkKilled the Data Object and killed it againBad Programming Practice
kuKilled the Data Object and then usedDefect
udUsed the Data Object and redefinedNOT an Anomaly
ukUsed the Data Object and KilledNOT an Anomaly
uuUsed the Data Object and used it againNOT an Anomaly
Advertisements