Skip to content
Snippets Groups Projects
Commit 8a76b180 authored by Rowe Reuben UHAC003's avatar Rowe Reuben UHAC003
Browse files

Pass flag through to BaseTester class.

parent de9c6399
Branches
No related tags found
No related merge requests found
......@@ -212,19 +212,26 @@ public abstract class BaseTester {
*
* @return true if the test passed
*/
protected boolean scriptedInteraction(String... interaction) throws
IOException {
protected boolean scriptedInteraction(
boolean full, String... interaction
) throws IOException {
List<String> msgs;
SubmissionWrapper wrapper = getNewSubmissionWrapper();
try {
msgs = wrapper.scriptedInteraction(interaction);
msgs = wrapper.scriptedInteraction(full, interaction);
} finally {
wrapper.close();
}
return outputResult(msgs, wrapper);
}
/**
protected boolean scriptedInteraction(String... interaction)
throws IOException {
return scriptedInteraction(true, interaction);
}
/**
* Run the submission with the given command line arguments
*
* Convenience for {@link runWithArgsDir(String workingDir, String[]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment