Interface AutoTestProgramStepOutput

A step to run a program and check its exit code.

interface AutoTestProgramStepOutput {
    description: AutoTestDescription;
    id: string;
    name: string;
    script: string;
}

Properties

description: AutoTestDescription

The description of this step.

id: string

The id of this step.

name: string

The name of this step.

script: string

The script that will be executed.