blob: c380c90d0270d78b328543fe369df0b00e472c32 [file] [log] [blame]
package org.checkerframework.framework.test.junit;
import java.io.File;
import java.util.List;
import org.checkerframework.framework.test.CheckerFrameworkPerDirectoryTest;
import org.junit.runners.Parameterized.Parameters;
public class ReportTest extends CheckerFrameworkPerDirectoryTest {
/** @param testFiles the files containing test code, which will be type-checked */
public ReportTest(List<File> testFiles) {
super(
testFiles,
org.checkerframework.common.util.report.ReportChecker.class,
"report",
"-Anomsgtext",
"-Astubs=tests/report/reporttest.astub");
}
@Parameters
public static String[] getTestDirs() {
return new String[] {"report"};
}
}