public RubyTestRunner(RubyTestRunnerContext context) : base(context) { this.options = context.Options; this.fileService = context.ScriptingFileService; context.TestResultsMonitor.InitialFilePosition = 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 RubyTestRunnerContext(IUnitTestProcessRunner processRunner, ITestResultsMonitor testResultsMonitor, RubyAddInOptions options, IScriptingFileService fileService, IUnitTestMessageService messageService) : base(processRunner, testResultsMonitor, fileService, messageService) { this.options = options; this.fileService = fileService; }
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 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 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; }