mavenVerifier.verifyErrorFreeLog();
}
private RestxShell prepareRestxShell() throws IOException {
ConsoleReader consoleReader = new ConsoleReader();
RestxShell shell = spy(new RestxShell(consoleReader, Factory.builder().build()));
doNothing().when(shell).println(anyString());
doReturn(this.workDirectory.getRoot().toPath()).when(shell).currentLocation();
return shell;
}