blob: fb0e6798c8703afe7c474bf4d8f9b87a826c64df [file] [log] [blame]
package org.checkerframework.checker.test.junit;
import java.io.File;
import java.util.List;
import org.checkerframework.checker.calledmethods.CalledMethodsChecker;
import org.checkerframework.framework.test.CheckerFrameworkPerDirectoryTest;
import org.junit.runners.Parameterized.Parameters;
/** Basic tests for the Called Methods Checker. */
public class CalledMethodsTest extends CheckerFrameworkPerDirectoryTest {
public CalledMethodsTest(List<File> testFiles) {
super(
testFiles,
CalledMethodsChecker.class,
"calledmethods",
"-Anomsgtext",
"-nowarn",
"-encoding",
"UTF-8");
}
@Parameters
public static String[] getTestDirs() {
return new String[] {"calledmethods"};
}
}