public ScriptController(
     IHostEnvironment hostEnvironment,
     ITargetExtractor targetExtractor,
     ICommandExecutor commandExecutor,
     CommandArguments commandArguments,
     IOptions <WebAppSettings> webApiOptions)
 {
     _hostEnvironment  = hostEnvironment;
     _targetExtractor  = targetExtractor;
     _commandExecutor  = commandExecutor;
     _commandArguments = commandArguments;
     _webAppSettings   = webApiOptions.Value;
 }
 public TargetExtractorTests()
 {
     _targetExtractor = new TargetExtractor();
 }