private List<Assignment> listOfAssignment = null;
/////////////////////////////////////////////////////////////////////////
private GraderWorker makeGrader(JavaGraderDriver.Configuration config) throws IOException
{
JavaGrader dAm = new JavaGrader(config.junitTestClassName());
for(String path : config.junitTestSourceFiles())
dAm.addJUnitTestSource(path);
for(String path : config.neededLibraryFiles())
dAm.addLibrary(path);
for(String path : config.neededResourceFiles())
{
dAm.addTestDataZipFile(path);
}
dAm.setFeedbackFileSuffix(config.feedbackFileSuffix());
return dAm;
}