Interface AutoTestSubstringMatchStepInput

A match step that requires a substring match.

interface AutoTestSubstringMatchStepInput {
    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 pattern that the program should output.

whitespacesPolicy: AutoTestWhitespacesPolicy

How to deal with whitespace when matching.