Add Test Result to a test run(testcase) in VSTS

2019-03-01 13:46发布

I need to add test result to a testcase in VSTS. I'm new to VSTS and not sure what went wrong with my code

var ur = new Uri("https://{myaccount}.visualstudio.com");
VssCredentials cr = new VssCredentials(new Microsoft.VisualStudio.Services.Common.VssBasicCredential(string.Empty, "XXXXX"));
var connection = new VssConnection(ur, cr);
var testClient = connection.GetClient<TestManagementHttpClient>();
int testpointid = 123;
string teamProject = "myproj";
RunCreateModel run = new RunCreateModel(name: "name123", plan: new Microsoft.TeamFoundation.TestManagement.WebApi.ShallowReference("123"), pointIds: new int[] { testpointid });
TestRun testrun = testClient.CreateTestRunAsync(run, teamProject).Result;
Microsoft.TeamFoundation.TestManagement.WebApi.ShallowReference("100000") };
TestCaseResult caseResult = new TestCaseResult() { State = "Completed", Outcome = "passed", Id = 100000 };
var testResults = testClient.UpdateTestResultsAsync(new TestCaseResult[] { caseResult }, teamProject, testrun.Id).Result;
RunUpdateModel runmodel = new RunUpdateModel(state: "Completed");
TestRun testRunResult = testClient.UpdateTestRunAsync(runmodel, teamProject, testrun.Id, runmodel).Result;
Console.WriteLine("Success");
Console.ReadKey();

I find this question similar but dint get answer.

Note:

I don't find option to create Test Suite and then test case in that. Just created test case directly. Is it mandate to create Test Suite? If so, how?

2条回答
我只想做你的唯一
2楼-- · 2019-03-01 14:17
        try
        {
            var u = new Uri("https://{My Account}.visualstudio.com");
            VssCredentials c = new VssCredentials(new Microsoft.VisualStudio.Services.Common.VssBasicCredential(string.Empty, "PAT"));
            var connection = new VssConnection(u, c);
            var testClient = connection.GetClient<TestManagementHttpClient>();
            int testpointid = 1;
            string teamProject = "MyProjectName";
            RunCreateModel run = new RunCreateModel(name: "TestCase Name", plan: new Microsoft.TeamFoundation.TestManagement.WebApi.ShallowReference("TestPlan Id"), pointIds: new int[] { testpointid });
            TestRun testrun = testClient.CreateTestRunAsync(run, teamProject).Result;

            TestCaseResult caseResult = new TestCaseResult() { State = "Completed", Outcome = "passed", Id = 100000 };

            var testResults = testClient.UpdateTestResultsAsync(new TestCaseResult[] { caseResult }, teamProject, testrun.Id).Result;
            RunUpdateModel runmodel = new RunUpdateModel(state: "Completed");
            TestRun testRunResult = testClient.UpdateTestRunAsync(runmodel, teamProject, testrun.Id, runmodel).Result;

        }
        catch (AggregateException e)
        {
            Console.WriteLine(e.InnerException.Message);

        }

Note: Instructions to configure

  1. Install Microsoft Team Foundation Server Extended Client package

Install-Package Microsoft.TeamFoundationServer.ExtendedClient -Version 15.112.1

  1. Install Test Manager extension, Create test plan, test suite in Test tab

  2. testpointid is TestCase number (i.e. order/index of testcase in test plan) and not the ID of the TestCase

  3. name is Testcase name, testrun.Id is auto-captured through testpointid (first index being 1)

查看更多
做自己的国王
3楼-- · 2019-03-01 14:38

The test suite is required. There are some ways to create test suite:

Way 1:

  1. Install Test Manager extension
  2. Create test plan, test suite in Test tab

Way 2: Using MTM to create test plan, test suite: Organizing Test Cases Using Test Suites.

Note: MTM is include in Visual Studio (e.g. VS Ultimate, Premium, Enterprise (2015) and visual studio test professional).

Way 3:

  1. Go to backlog board
  2. Add test

enter image description here

  1. Go to Test page and check test plan, suite

enter image description here

查看更多
登录 后发表回答