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() |
Map<String,String> |
getOptions()
Some Javac command line arguments require arguments themselves (e.g.
|
List<String> |
getProcessors() |
List<File> |
getTestSourceFiles() |
boolean |
shouldEmitDebugInfo() |
List<File> getTestSourceFiles()
List<File> getDiagnosticFiles()
fileName:lineNumber: diagnostKind: (messageKey)e.g.,
MethodInvocation.java:17: error: (method.invocation.invalid)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()
boolean shouldEmitDebugInfo()