void CreateNUnitTestRunner()
        {
            selectedTests = SelectedTestsHelper.CreateSelectedTestMember();
            context       = new MockNUnitTestRunnerContext();
            FileUtility.ApplicationRootPath = @"C:\SharpDevelop";

            testRunner = context.CreateNUnitTestRunner();
        }
        public void Init()
        {
            selectedTests = SelectedTestsHelper.CreateSelectedTestMember();
            FileUtility.ApplicationRootPath = @"C:\SharpDevelop";

            messageService              = new MockMessageService();
            debuggerService             = new MockDebuggerService();
            debugger                    = debuggerService.MockDebugger;
            testResultsMonitor          = new MockTestResultsMonitor();
            testResultsMonitor.FileName = @"c:\temp\tmp66.tmp";
            options          = new UnitTestingOptions(new Properties());
            options.NoShadow = true;
            testDebugger     = new NUnitTestDebugger(debuggerService, messageService, testResultsMonitor, options);
        }
 public void Init()
 {
     selectedTestsWithTestMethod = SelectedTestsHelper.CreateSelectedTestMember();
 }