blob: 025cd724eee20f1b8fdc96c531601c26be6aba01 [file] [log] [blame]
package org.checkerframework.checker.test.junit;
import java.io.File;
import java.util.List;
import org.checkerframework.framework.test.CheckerFrameworkPerDirectoryTest;
import org.junit.runners.Parameterized.Parameters;
public class NullnessStubfileTest extends CheckerFrameworkPerDirectoryTest {
/**
* Create a NullnessStubfileTest.
*
* @param testFiles the files containing test code, which will be type-checked
*/
public NullnessStubfileTest(List<File> testFiles) {
super(
testFiles,
org.checkerframework.checker.nullness.NullnessChecker.class,
"nullness",
"-Anomsgtext",
"-AstubWarnIfNotFound",
"-Astubs="
+ String.join(
":",
"tests/nullness-stubfile/stubfile1.astub",
"tests/nullness-stubfile/stubfile2.astub",
"tests/nullness-stubfile/requireNonNull.astub"));
}
@Parameters
public static String[] getTestDirs() {
return new String[] {"nullness-stubfile"};
}
}