de.firemage.autograder.agent.AnalysisAgent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autograder-agent Show documentation
Show all versions of autograder-agent Show documentation
Test runtime of the Autograder
package de.firemage.autograder.agent;
import java.lang.instrument.Instrumentation;
import java.nio.file.Path;
public class AnalysisAgent {
public static void premain(String args, Instrumentation instrumentation) {
EventRecorder.setOutPath(Path.of("/home/student/codelinter_events.txt"));
instrumentation.addTransformer(new ClassTransformer());
}
}