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

Expected Outcome
  • 时间:2024-03-20 23:06:40

Expected Outcome


Previous Page Next Page  

Expected Outcome?

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

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

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

    试验设想

    试验步骤

    参数

    预期结果

    实际结果

Example:

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

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

ScenarioTest StepExpected 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