public PythonTestRunnerApplication(string testResultsFileName,
                                    PythonAddInOptions options,
                                    PythonStandardLibraryPath pythonStandardLibraryPath,
                                    IScriptingFileService fileService)
 {
     this.testResultsFileName       = testResultsFileName;
     this.options                   = options;
     this.pythonStandardLibraryPath = pythonStandardLibraryPath;
     this.fileService               = fileService;
     consoleApplication             = new PythonConsoleApplication(options);
 }
		public PythonTestRunnerApplication(string testResultsFileName,
			PythonAddInOptions options,
			PythonStandardLibraryPath pythonStandardLibraryPath,
			IScriptingFileService fileService)
		{
			this.testResultsFileName = testResultsFileName;
			this.options = options;
			this.pythonStandardLibraryPath = pythonStandardLibraryPath;
			this.fileService = fileService;
			consoleApplication = new PythonConsoleApplication(options);
		}
		public void Init()
		{
			options = new PythonAddInOptions(new Properties());
			options.PythonFileName = @"C:\IronPython\ipy.exe";
			app = new PythonConsoleApplication(options);
		}