예제 #1
0
        void UpdateTestResult(TestResult result)
        {
            TestProject testProject = GetTestProjectForProject(selectedTests.Project);

            if (testProject != null)
            {
                testProject.UpdateTestResult(result);
            }
        }
예제 #2
0
        /// <summary>
        /// Updates the test result in the test tree view.
        /// </summary>
        void UpdateTestResult(TestResult result)
        {
            TestProject testProject = GetTestProject(currentProject);

            if (testProject != null)
            {
                testProject.UpdateTestResult(result);
            }
        }