Interface AutoTestRedactedRegexMatchStepOutput

A match step that requires a pattern to match the output (redacted).

interface AutoTestRedactedRegexMatchStepOutput {
    caseSensitivity: AutoTestRedactedCaseSensitivity;
    description: AutoTestDescription;
    id: string;
    inputText: AutoTestRedactedString;
    name: string;
    outputText: AutoTestRedactedString;
    whitespacesPolicy: AutoTestRedactedWhitespacesPolicy;
}

Properties

How to deal with cases when matching.

description: AutoTestDescription

The description of this step.

id: string

The id of this step.

The stdin given to the program.

name: string

The name of this step.

The expected pattern that the program should output.

How to deal with whitespace when matching.