FAILUREMODE (ENUM)ΒΆ

TYPE FAILUREMODE :

This enum defines the possible failure modes in a test manager check. This enum is synchronized to to the .NET FailureMode enum, so all changes here need to be replicated there.

Attributes:
qualified_only
InOut:

Name

Initial

Comment

Warning

1

The problem is only reported as a warning in the test report, but execution continues normally.
We intentionally start the enum values with 1 to catch uninitialized variables.

AbortTestCase

The current test case is aborted (and directly following tests of TestCaseType.Consecutive are skipped). This is the default when no mode is explicitly defined nor inherited.

AbortUnitTesting

The whole IEC Unit Test element is aborted when this failure occurs.

AbortTestRun

The whole test script run is aborted when this failure occurs.