Interface AutoTestCodingQuestionStepOutput

Create a question that has to be answered by the student in a code block. This question will be automatically generated for the student in the code editor under the parent quiz of this question.

interface AutoTestCodingQuestionStepOutput {
    children: AutoTestTestStepOutput[];
    id: string;
    name: string;
    question: string;
    starterCode: string;
    studentFileName: string;
}

Properties

The children of this wrapper step.

id: string

The id of this step.

name: string

The name of this step.

question: string

The question that the studen will have to answer using a code block.

starterCode: string

The template code that the student will start with.

studentFileName: string

The name of the file, where the student code block answer will live. This file can be used to do grading in the children of this block.