Interface AutoTestSimpleMatchStepOutput

A match step that requires a full match.

interface AutoTestSimpleMatchStepOutput {
    caseSensitivity: AutoTestCaseSensitivity;
    description: AutoTestDescription;
    id: string;
    inputText: string;
    name: string;
    outputText: string;
    whitespacesPolicy: AutoTestWhitespacesPolicy;
}

Properties

caseSensitivity: AutoTestCaseSensitivity

How to deal with cases when matching.

description: AutoTestDescription

The description of this step.

id: string

The id of this step.

inputText: string

The stdin given to the program.

name: string

The name of this step.

outputText: string

The expected stdout of the program.

whitespacesPolicy: AutoTestWhitespacesPolicy

How to deal with whitespace when matching.