Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于 Itest 案例是接口,我们无法创建它的对象。
我知道通过在项目下创建测试用例然后将其添加到测试管理器来解决问题。
是否有任何选项可以直接在测试经理测试计划测试套件下创建测试用例?
这有效:
private static void CopyTestCaseIntoTestSuite(ITestCase sourceTestCase, IStaticTestSuite targetTestSuite) { targetTestSuite.Entries.Add(sourceTestCase); }
如果您需要其他帮助,请告诉我。:)