TFS 2012 API获取字段摘要对象TESTCASE

时间:2014-08-12 03:24:39

标签: tfs

摘要获取TestCase对象中的字段,我得到代码来检索步骤和预期结果,没有摘要。 请你的帮助。

谢谢

         for (int i = 0; i < testPlan.TestSuites.Count; i++)
            {
                var ts = testPlan.TestSuites[i];

                ITestSuiteEntryCollection suiteentrys = ts.TestCases;

                foreach (ITestSuiteEntry item in suiteentrys)
                {

                    ITestCase tes = item.TestCase;

                    tfsTestCase testcase = new tfsTestCase();
                    testcase.Suite = testPlan.TestSuites[i].Title;
                    testcase.Nombre = tes.Title;

                    foreach (ITestAction action in tes.Actions)
                    {
                        ITestStep er = action as ITestStep;

                        testcase.NumeroPaso = er.Id;
                        testcase.Paso = er.Title;
                        testcase.ResultadoEsperado = er.ExpectedResult;
                        testcase.Descripcion = er.Summary ??? ;

                    }

                    lsttestcase.Add(testcase); 
                }
              }
            }

2 个答案:

答案 0 :(得分:1)

test- 步骤没有摘要。 test- case 由测试步骤组成,它是包含摘要的测试用例。

答案 1 :(得分:0)

您可以尝试使用

testCase.CustomFields [&#34;总结&#34;];