public void RunAllTests()
        {
            TestsResultsModel testResults = new TestsResultsModel(this.ExpectedOutputFolder, this.TestsResultsFolderPath, this.SourceCodePath, this.TaskName, configuration);

            AllTests.Insert(0, testResults);
            testResults.RunAllTests();
        }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TestsResultsViewModel"/> class.
 /// </summary>
 /// <param name="model">The model.</param>
 public TestsResultsViewModel(TestsResultsModel model)
 {
     this.model = model;
 }