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

Test Case
  • 时间:2024-03-20 11:10:51

Test Case


Previous Page Next Page  

What is Test case?

A test case is a document, which has a set of test data, preconditions, expected results and postconditions, developed for a particular test scenario in order to verify comppance against a specific requirement.

测试案例是试验执行的起点,在应用一套投入价值之后,应用具有明确的结果,使系统处于某个终点,或者也称为执行后。

Typical Test Case Parameters:

    测试案例

    试验设想

    测试案例说明

    试验步骤

    预审

    测试数据

    预期结果

    测试参数

    实际结果

    环境信息

    评 注

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