constructorArgs[i] = String.class;
Constructor<?> c = clazz.getConstructor(constructorArgs);
Object[] args = new String[testAndFile.length - 1];
for (int i = 1; i < testAndFile.length; ++i)
args[i - 1] = testAndFile[i];
WordChoiceEvaluation eval =
(WordChoiceEvaluation)(c.newInstance(args));
verbose("Loaded word choice test " + testAndFile[0]);
wordChoiceTests.add(eval);
}