public interface TestConfiguration
Modifier and Type | Method and Description |
---|---|
List<File> |
getDiagnosticFiles()
Diagnostic files consist of a set of lines that enumerate expected error/warning diagnostics.
|
List<String> |
getFlatOptions()
Returns the map returned by
getOptions() , flattened into a list. |
Map<String,String> |
getOptions()
Some Javac command line arguments require arguments themselves (e.g.
|
List<String> |
getProcessors()
Returns a list of annotation processors (Checkers) passed to the Javac compiler.
|
List<File> |
getTestSourceFiles()
Returns a list of source files a CheckerFrameworkPerDirectoryTest should be run over.
|
boolean |
shouldEmitDebugInfo()
Returns true if the TypecheckExecutor should emit debug information on system out, false
otherwise.
|
List<File> getTestSourceFiles()
List<File> getDiagnosticFiles()
fileName:lineNumber: diagnostKind: (messageKey)e.g.,
MethodInvocation.java:17: error: (method.invocation)If getDiagnosticFiles does NOT return an empty list, then the only diagnostics expected by the TestExecutor will be the ones found in these files. If it does return an empty list, then the only diagnostics expected will be the ones found in comments in the input test files.
It is preferred that users write the errors in the test files and not in diagnostic files.
List<String> getProcessors()
Map<String,String> getOptions()
-classpath
takes a
path) getOptions returns a Map(optionName => optionArgumentIfAny)
. If an option does
not take an argument, pass null as the value.
E.g.,
Map(
"-AprintAllQualifiers" => null
"-classpath" => "myDir1:myDir2"
)
List<String> getFlatOptions()
getOptions()
, flattened into a list. The entries will be
added as followed: List(key1, value1, key2, value2, ..., keyN, valueN). If a value is NULL,
then it will not appear in the list.getOptions()
, but flattened into a listboolean shouldEmitDebugInfo()