package tests; import java.io.File; import java.util.List; import org.checkerframework.framework.test.CheckerFrameworkPerDirectoryTest; import org.junit.runners.Parameterized.Parameters; /** JUnit tests for the Nullness checker when using safe defaults for unannotated bytecode. */ public class NullnessSafeDefaultsBytecodeTest extends CheckerFrameworkPerDirectoryTest { public NullnessSafeDefaultsBytecodeTest(List<File> testFiles) { super( testFiles, org.checkerframework.checker.nullness.NullnessChecker.class, "nullness", "-AuseDefaultsForUncheckedCode=bytecode", "-Anomsgtext"); } @Parameters public static String[] getTestDirs() { return new String[] {"nullness-safedefaultsbytecode"}; } }