-
Lückemeyer authored
Initial commit of the backend for the fork of the Moodle Dockerized Test Agent (MoDTA) from the Moodle Dockerized Test Tool (MoodleDTT)
5372c0e5
package de.hftstuttgart.dtabackend.models;
public class Result
{
public String name;
public int state;
public String failureType;
public String failureReason;
public String stacktrace;
public int columnNumber;
public int lineNumber;
public int position;
public static enum State
{
UNKNOWN,
SUCCESS,
FAILURE,
COMPILATIONERROR,
}
}