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

Actual Outcome
  • 时间:2024-03-21 08:01:33

Actual Outcome


Previous Page Next Page  

What is Actual Outcome?

实际结果也称为实际结果,测试者在进行测试后会得到这一结果。

实际结果总是与试验执行阶段的测试案例一并记录。 在进行测试后,实际结果与预期结果进行了比较,并注意到偏离情况。 如有偏离,则称为defect.

简言之,在取得实际成果之后,我们可以指出这一设想是否通过或失败。

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

    试验设想

    试验步骤

    参数

    预期结果

    实际结果

Example:

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

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

ScenarioTest Step预期结果Actual 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