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

Predicted Outcome
  • 时间:2024-03-20 17:03:10

Predicted Outcome


Previous Page Next Page  

What is Predicted outcome?

期间 测试设计阶段、测试案例是书面的,因此,每个案件都有预期或预测的结果,而实际结果是比较的。 如有偏离,则称为defect.

简言之,在获得预期结果之后,应在进行测试之前记录,并称作预期结果。

在制定测试案例时,我们通常有以下领域:

    试验设想

    试验步骤

    参数

    预期/预测 结果

    实际结果

Example:

让我们说,我们需要检查一个能够接受最多10个特性的投入领域。

在为上述设想制定测试案例时,测试案例记录如下。 在以下例子中,第1起案件是通行假想,而第2起案件是东帝汶国防军。

ScenarioTest StepPredicted OutcomeActual Outcome
Verify that the input field that can accept maximum of 10 charactersLogin to apppcation and key in 10 charactersApppcation should be able to accept all 10 characters.Apppcation accepts all 10 characters.
Verify that the input field that can accept maximum of 11 charactersLogin to apppcation and key in 11 charactersApppcation should NOT accept all 11 characters.Apppcation accepts all 10 characters.

如果预期/预测结果与实际结果相对应,那么我们就会出现缺陷。 缺陷贯穿于缺陷的生活周期,检测器在固定后处理。

Advertisements