简体   繁体   中英

Pass test case in tfs using tfs api

i have the below code to pass the test case in TFS/MTM.I have achieved to pass the test case from outside but when i check the inside steps of the test case,they are not passed.I am looking to pass the test case by passing each action of test case. any help appreciated.

ITestPlan tp = testinsuitesd.Plan;
// foreach (ITestCase testcase in allTestCases)
//{

ITestRun testRun = testinsuitesd.Plan.CreateTestRun(false);
ITestPointCollection testPoints = tp.QueryTestPoints("select * from TestPoint where suiteId= "+ testinsuitesd.Id);
    foreach(ITestPoint testRuns in testPoints)
    {
        testRun.AddTestPoint(testRuns, null);
    }
    testRun.Save();

    ITestCaseResultCollection testCaseResult = testRun.QueryResults();     //code to Pass the test Case
    foreach (ITestCaseResult testResult in testCaseResult)
        {
    ITestIterationResult iterationResult;
   ITestActionResult actionResults;                                   
      iterationResult = testResult.CreateIteration(1);
    //actionResults = testResult.CreateIteration(1);
            foreach (ITestAction testStep in testResult.GetTestCase().Actions)
            {

                ITestActionResult stepResult = iterationResult.CreateStepResult(testStep.Id);                                                    
                //stepResult.ErrorMessage = String.Empty;                                            
                stepResult.Outcome = TestOutcome.Passed; //you can assign different states here

                iterationResult.Actions.Add(stepResult);
        //actionResults.Add(stepResult);
             //   iterationResult.Actions.Add(stepResult);
       // actionResults.   Add(stepResult);
            }

            iterationResult.Outcome = TestOutcome.Passed;                                        
            testResult.Iterations.Add(iterationResult);
    testResult.Outcome = TestOutcome.Passed;
    testResult.State = TestResultState.Completed;
    testResult.Save();
        }
    testCaseResult.Save(false);
//  testCaseResult.
    testRun.Save();
    testRun.Refresh();

tp.Save();

Try with below code:

var tfsRun = _testPoint.Plan.CreateTestRun(false);

tfsRun.DateStarted = DateTime.Now;
tfsRun.AddTestPoint(_testPoint, _currentIdentity);
tfsRun.DateCompleted = DateTime.Now;
tfsRun.Save(); // so results object is created

var result = tfsRun.QueryResults()[0];
result.Owner = _currentIdentity;
result.RunBy = _currentIdentity;
result.State = TestResultState.Completed;
result.DateStarted = DateTime.Now;
result.Duration = new TimeSpan(0L);
result.DateCompleted = DateTime.Now.AddMinutes(0.0);

var iteration = result.CreateIteration(1);
iteration.DateStarted = DateTime.Now;
iteration.DateCompleted = DateTime.Now;
iteration.Duration = new TimeSpan(0L);
iteration.Comment = "Run from TFS Test Steps Editor by " + _currentIdentity.DisplayName;

for (int actionIndex = 0; actionIndex < _testEditInfo.TestCase.Actions.Count; actionIndex++)
{
    var testAction = _testEditInfo.TestCase.Actions[actionIndex];
    if (testAction is ISharedStepReference)
        continue;

    var userStep = _testEditInfo.SimpleSteps[actionIndex];

    var stepResult = iteration.CreateStepResult(testAction.Id);
    stepResult.ErrorMessage = String.Empty;
    stepResult.Outcome = userStep.Outcome;

    foreach (var attachmentPath in userStep.AttachmentPaths)
    {
        var attachment = stepResult.CreateAttachment(attachmentPath);
        stepResult.Attachments.Add(attachment);
    }

    iteration.Actions.Add(stepResult);
}

var overallOutcome = _testEditInfo.SimpleSteps.Any(s => s.Outcome != TestOutcome.Passed)
    ? TestOutcome.Failed
    : TestOutcome.Passed;

iteration.Outcome = overallOutcome;

result.Iterations.Add(iteration);

result.Outcome = overallOutcome;
result.Save(false);

Moreover, there are also some links about TFS API that may help you:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM