FAMILY

System Testing Test Script Language.

Syntax

FAMILY <family> {[, <family> ]}

Description

The FAMILY instruction allows you to group tests by families or classes.

This instruction appears just once at the beginning of a SCENARIO block, where it defines the family or families to which the scenario belongs.

When starting tests, you can request to execute only tests of a given family.

The <family> parameter indicates the name of the test family. You can define the following families: nominal, structural, robustness.

A test can belong to several families: in this case, the FAMILY instruction contains a <family> list, separated by commas.

<family> can be any identifier. You must have at least one family name.

The FAMILY instruction is optional. If omitted, the test belongs to every family.

Example

SCENARIO Test_1

FAMILY nominal

COMMENT ...

...

END SCENARIO