コード例 #1
0
 public TestResultsPackage(IWindowManager windowManager, ITestResultsController testResultsController, IOptionsController optionsController,
     ITestTreeModel testTreeModel, ITestStatistics testStatistics)
 {
     this.windowManager = windowManager;
     this.testResultsController = testResultsController;
     this.optionsController = optionsController;
     this.testTreeModel = testTreeModel;
     this.testStatistics = testStatistics;
 }
コード例 #2
0
 public TestResultsPackage(IWindowManager windowManager, ITestResultsController testResultsController, IOptionsController optionsController,
                           ITestTreeModel testTreeModel, ITestStatistics testStatistics)
 {
     this.windowManager         = windowManager;
     this.testResultsController = testResultsController;
     this.optionsController     = optionsController;
     this.testTreeModel         = testTreeModel;
     this.testStatistics        = testStatistics;
 }
コード例 #3
0
ファイル: TestResults.cs プロジェクト: dougrathbone/mbunit-v3
        public TestResults(ITestResultsController testResultsController, IOptionsController optionsController, 
            ITestTreeModel testTreeModel, ITestStatistics testStatistics)
        {
            this.testResultsController = testResultsController;
            this.optionsController = optionsController;
            this.testTreeModel = testTreeModel;
            this.testStatistics = testStatistics;

            InitializeComponent();            
        }
コード例 #4
0
ファイル: TestResults.cs プロジェクト: still-adam-k/mbunit-v3
        public TestResults(ITestResultsController testResultsController, IOptionsController optionsController,
                           ITestTreeModel testTreeModel, ITestStatistics testStatistics)
        {
            this.testResultsController = testResultsController;
            this.optionsController     = optionsController;
            this.testTreeModel         = testTreeModel;
            this.testStatistics        = testStatistics;

            InitializeComponent();
        }