4
我試圖用測試套件和測試案例以編程方式創建測試計劃。問題是將測試步驟添加到我的測試用例。此代碼在測試用例中創建了正確的測試計劃,其中包含測試套件和測試用例,但不包括測試步驟。我錯在哪裏?TFS 2015:將測試步驟添加到測試案例
static void Main(string[] args)
{
try
{
var tfs = TfsHelper.TryToAutenticated();
var wis = tfs.GetService<WorkItemStore>();
//TEST PLAN
// Let's create a new Test Plan from scratch
// Only the Name property is required to be set before
// you can save, but we'll set a few extras here as well.
ITestManagementService service = (ITestManagementService)tfs.GetService(typeof(ITestManagementService));
ITestManagementTeamProject myTestManagementTeamProject = service.GetTeamProject("GammaEnterprise");
ITestPlan newTestPlan = myTestManagementTeamProject.TestPlans.Create();
newTestPlan.Name = "My Test Plan";
newTestPlan.Save();
//TEST SUITE
// Next let's add a new Test Suite to our plan
// First, create a static suite (I'll cover Dynamic Suites
// in a future post)
IStaticTestSuite newSuite = myTestManagementTeamProject.TestSuites.CreateStatic();
newSuite.Title = "My Suite";
newTestPlan.RootSuite.Entries.Add(newSuite);
newTestPlan.Save();
//TEST CASE
// Let's find the default configuration that was created when
// we created our Team Project. We'll need this to add some
// tests to our new suite (or we could create a new one, but
// I'll keep things simple and just get the default one for now)
ITestConfiguration defaultConfig = null;
foreach (ITestConfiguration config in myTestManagementTeamProject.TestConfigurations.Query(
"Select * from TestConfiguration"))
{
defaultConfig = config;
break;
}
// I would typically check that defaultConfig is not null here
// but for brevity sake will skip that.
// Next we'll create a Testcase to add to our Test Suite
ITestCase tc = myTestManagementTeamProject.TestCases.Create();
tc.Title = "Verify X";
//HERE THE PROBLEM----------------------
ITestStep ts = tc.CreateTestStep();
ts.TestStepType = TestStepType.ActionStep;
ts.Description = "Description";
ts.Title = "Title";
//---------------------------------------
tc.Save();
// Now let's add it to your suite, we still have our reference
// to the static suite around so we'll use that
// First we need an "IdAndName" object for our config
IdAndName defaultConfigIdAndName = new IdAndName(defaultConfig.Id, defaultConfig.Name);
// Now we'll set the default configs for our suite
newSuite.SetDefaultConfigurations(new IdAndName[] { defaultConfigIdAndName });
// Now let's add that testcase
newSuite.Entries.Add(tc);
// Now let's save the plan (don't need to explicitly
// save test suites).
newTestPlan.Save();
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
Console.ReadLine();
}
}
非常感謝。有用。 –
@LucaF。如果有效,您可以將其標記爲答案。這將有助於人們稍後瀏覽網站。 –