Example #1
0
 public RubyTestRunner(RubyTestRunnerContext context)
     : base(context)
 {
     this.options     = context.Options;
     this.fileService = context.ScriptingFileService;
     context.TestResultsMonitor.InitialFilePosition = 0;
 }
Example #2
0
 public PythonTestRunner(PythonTestRunnerContext context)
     : base(context)
 {
     this.options = context.Options;
     this.pythonStandardLibraryPath = context.PythonStandardLibraryPath;
     this.fileService = context.ScriptingFileService;
 }
Example #3
0
		public RubyTestRunner(RubyTestRunnerContext context)
			: base(context)
		{
			this.options = context.Options;
			this.fileService = context.ScriptingFileService;
			context.TestResultsMonitor.InitialFilePosition = 0;
		}
Example #4
0
		public PythonTestRunner(PythonTestRunnerContext context)
			: base(context)
		{
			this.options = context.Options;
			this.pythonStandardLibraryPath = context.PythonStandardLibraryPath;
			this.fileService = context.ScriptingFileService;
		}
		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 RubyTestRunnerContext(IUnitTestProcessRunner processRunner,
			ITestResultsMonitor testResultsMonitor,
			RubyAddInOptions options,
			IScriptingFileService fileService,
			IUnitTestMessageService messageService)
			: base(processRunner, testResultsMonitor, fileService, messageService)
		{
			this.options = options;
			this.fileService = fileService;
		}
 public RubyTestRunnerContext(IUnitTestProcessRunner processRunner,
                              ITestResultsMonitor testResultsMonitor,
                              RubyAddInOptions options,
                              IScriptingFileService fileService,
                              IUnitTestMessageService messageService)
     : base(processRunner, testResultsMonitor, fileService, messageService)
 {
     this.options     = options;
     this.fileService = fileService;
 }
Example #9
0
		public RubyTestDebugger(IUnitTestDebuggerService debuggerService,
			IUnitTestMessageService messageService,
			ITestResultsMonitor testResultsMonitor,
			RubyAddInOptions options,
			IScriptingFileService fileService)
			: base(debuggerService, messageService, testResultsMonitor)
		{
			this.options = options;
			this.fileService = fileService;
			testResultsMonitor.InitialFilePosition = 0;
		}
 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 RubyTestDebugger(IUnitTestDebuggerService debuggerService,
                         IUnitTestMessageService messageService,
                         ITestResultsMonitor testResultsMonitor,
                         RubyAddInOptions options,
                         IScriptingFileService fileService)
     : base(debuggerService, messageService, testResultsMonitor)
 {
     this.options     = options;
     this.fileService = fileService;
     testResultsMonitor.InitialFilePosition = 0;
 }
 public PythonTestRunnerContext(IUnitTestProcessRunner processRunner,
                                ITestResultsMonitor testResultsMonitor,
                                IUnitTestMessageService messageService,
                                PythonAddInOptions options,
                                PythonStandardLibraryPath pythonStandardLibraryPath,
                                IScriptingFileService fileService)
     : base(processRunner, testResultsMonitor, fileService, messageService)
 {
     this.options = options;
     this.pythonStandardLibraryPath = pythonStandardLibraryPath;
     this.fileService = fileService;
 }
		public PythonTestRunnerContext(IUnitTestProcessRunner processRunner,
			ITestResultsMonitor testResultsMonitor,
			IUnitTestMessageService messageService,
			PythonAddInOptions options,
			PythonStandardLibraryPath pythonStandardLibraryPath,
			IScriptingFileService fileService)
			: base(processRunner, testResultsMonitor, fileService, messageService)
		{
			this.options = options;
			this.pythonStandardLibraryPath = pythonStandardLibraryPath;
			this.fileService = fileService;
		}
Example #15
0
 public PythonTestDebugger(IUnitTestDebuggerService debuggerService,
                           IUnitTestMessageService messageService,
                           ITestResultsMonitor testResultsMonitor,
                           PythonAddInOptions options,
                           PythonStandardLibraryPath pythonStandardLibraryPath,
                           IScriptingFileService fileService)
     : base(debuggerService, messageService, testResultsMonitor)
 {
     this.options = options;
     this.pythonStandardLibraryPath = pythonStandardLibraryPath;
     this.fileService = fileService;
 }
		public PythonTestDebugger(IUnitTestDebuggerService debuggerService,
			IUnitTestMessageService messageService,
			ITestResultsMonitor testResultsMonitor,
			PythonAddInOptions options,
			PythonStandardLibraryPath pythonStandardLibraryPath,
			IScriptingFileService fileService)
			: base(debuggerService, messageService, testResultsMonitor)
		{
			this.options = options;
			this.pythonStandardLibraryPath = pythonStandardLibraryPath;
			this.fileService = fileService;
		}