当前,我正在尝试使用Azure测试计划来管理所有测试用例,但是我只是发现了如何构建/生成手动测试用例。我还对Pipeline进行了一些研究,我只是编写了一些“ hello world”测试脚本并使用Pipeline自动测试代码。我的问题是:如何将TestPlans与Pipeline结合使用以使管道中的测试可记录?非常感谢!
答案 0 :(得分:0)
我的问题是:如何将TestPlans与Pipeline结合使用 管道中的测试是否可记录?
我对recordable
在您的问题中的含义感到困惑。要将TestPlan与Pipeline结合使用,应配置Test Plan Settings。例如,在“测试计划设置”中设置一个构建管道(构建并生成测试二进制文件)和一个发布管道,其中包含与测试相关的任务。
通常的逻辑是:
A test plan containing your automated tests, which you have associated with automated test methods using Visual Studio 2017, or Visual Studio 2015 or earlier.
A Team Build pipeline that generates builds containing the test binaries.
The app to test. You can deploy the app as part of the build and release workflow and also use it for on-demand testing.
有关更多详细信息,请检查Run automated tests from test plans。