public RubyTestRunnerApplication(string testResultsFileName,
                                  RubyAddInOptions options,
                                  IScriptingFileService fileService)
 {
     this.testResultsFileName = testResultsFileName;
     this.options             = options;
     this.fileService         = fileService;
     consoleApplication       = new RubyConsoleApplication(options);
 }
		public RubyTestRunnerApplication(string testResultsFileName,
			RubyAddInOptions options,
			IScriptingFileService fileService)
		{
			this.testResultsFileName = testResultsFileName;
			this.options = options;
			this.fileService = fileService;
			consoleApplication = new RubyConsoleApplication(options);
		}
		public void Init()
		{
			options = new RubyAddInOptions(new Properties());
			options.RubyFileName = @"C:\IronRuby\ir.exe";
			app = new RubyConsoleApplication(options);
		}