blob: c705a032c7f37b92e2839fe33bde523d34c72a4c [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.testaccumulation.TestAccumulationNoReturnsReceiverChecker;
import org.junit.runners.Parameterized.Parameters;
/**
* A test that the accumulation abstract checker is working correctly, using a simple accumulation
* checker without a returns-receiver analysis.
*/
public class AccumulationNoReturnsReceiverTest extends CheckerFrameworkPerDirectoryTest {
/** @param testFiles the files containing test code, which will be type-checked */
public AccumulationNoReturnsReceiverTest(List<File> testFiles) {
super(
testFiles,
TestAccumulationNoReturnsReceiverChecker.class,
"accumulation-norr",
"-Anomsgtext",
"-encoding",
"UTF-8");
}
@Parameters
public static String[] getTestDirs() {
return new String[] {"accumulation-norr", "all-systems"};
}
}