An error occurred while loading the file. Please try again.
-
Lückemeyer authored2330d090
package de.hftstuttgart.dtabackend.models;
import java.util.HashSet;
import java.util.Set;
public class ResultSummary
{
public long timestamp = System.currentTimeMillis() / 1000;
public String globalStacktrace = null;
public String successfulTestCompetencyProfile;
public String overallTestCompetencyProfile;
public Set<Result> results = new HashSet<>();
}