blob: 4b8d52e2af01a024d8c493f686716e95524e6671 [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.checkerframework.framework.testchecker.util.FlowTestChecker;
import org.junit.runners.Parameterized.Parameters;
/** Tests for the {@code -AsuggestPureMethods} command-line argument. */
public class PuritySuggestionsTest extends CheckerFrameworkPerDirectoryTest {
/** @param testFiles the files containing test code, which will be type-checked */
public PuritySuggestionsTest(List<File> testFiles) {
super(
testFiles,
FlowTestChecker.class,
"flow",
"-Anomsgtext",
"-AsuggestPureMethods",
"-AcheckPurityAnnotations");
}
@Parameters
public static String[] getTestDirs() {
return new String[] {"purity-suggestions"};
}
}