1

由于 Itest 案例是接口,我们无法创建它的对象。

我知道通过在项目下创建测试用例然后将其添加到测试管理器来解决问题。

是否有任何选项可以直接在测试经理测试计划测试套件下创建测试用例?

4

1 回答 1

0

这有效:

private static void CopyTestCaseIntoTestSuite(ITestCase sourceTestCase, IStaticTestSuite targetTestSuite)
{
    targetTestSuite.Entries.Add(sourceTestCase);
}

如果您需要其他帮助,请告诉我。:)

于 2012-11-28T11:34:35.407 回答