将 QTP 测试与 TFS 2010 集成

发布于 2024-10-13 08:01:12 字数 193 浏览 3 评论 0原文

是否有人做过将使用 QTP(关键字驱动自动化)创建的测试与 Team Foundation Server 2010(甚至 2008)集成的工作?

我们的组织计划实施 TFS 2010 作为所有工程相关工作的首选工具,但我们目前使用的测试框架是使用 QTP 开发的。如果我现在使用 TFB 创建构建并希望执行签入构建测试的持续集成过程,有什么方法可以实现它?

Has anyone done work to integrate tests created using QTP (keyword driven automation) with Team Foundation Server 2010 (or even with 2008)?

Our Organization is planning to implement TFS 2010 as the tool of choice for all Engineering related work, but the Test Framework we currently are using is developed using QTP. If I now create a build with TFB and wish to execute a continuous integration process for checkin-build-test, is there any way in which I can implement it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海之角 2024-10-20 08:01:12

以下博客文章展示了如何使用 QuickTestPro COM 自动化 (QuickTest.Application) 从 MSBuild 脚本调用测试:http://web. archive.org/web/20080614153438/http://dotnet.org.za/cjlotz/archive/2007/09/17/part-7-continuous-integration-the-qtpbuild.aspx

一旦你有了脚本创建并安装了正确的先决条件,看起来就像这样简单:

<Exec Command="cscript.exe /nologo $(DOUBLE_QUOTES)$(QtpTestCasesFolder)\$(CCNetProject).TestCases.txt$(DOUBLE_QUOTES) $(DOUBLE_QUOTES)$(QtpOutputFolder)$(DOUBLE_QUOTES) $(DOUBLE_QUOTES)$(QtpOutputFolder)\$(QtpResultsSummaryFile)$(DOUBLE_QUOTES) $(DOUBLE_QUOTES)$(QCServer)$(DOUBLE_QUOTES) $(QCUser) $(QCPassword)" ContinueOnError="true">
    <Output TaskParameter="ExitCode" ItemName="QtpExitCode"/>
</Exec>

Here is a blog post that shows how to use the QuickTestPro COM automation (QuickTest.Application) to invoke the tests from a MSBuild script: http://web.archive.org/web/20080614153438/http://dotnet.org.za/cjlotz/archive/2007/09/17/part-7-continuous-integration-the-qtpbuild.aspx

Once you have the script created and the right pre-req's installed, it looks like it's as easy as this:

<Exec Command="cscript.exe /nologo $(DOUBLE_QUOTES)$(QtpTestCasesFolder)\$(CCNetProject).TestCases.txt$(DOUBLE_QUOTES) $(DOUBLE_QUOTES)$(QtpOutputFolder)$(DOUBLE_QUOTES) $(DOUBLE_QUOTES)$(QtpOutputFolder)\$(QtpResultsSummaryFile)$(DOUBLE_QUOTES) $(DOUBLE_QUOTES)$(QCServer)$(DOUBLE_QUOTES) $(QCUser) $(QCPassword)" ContinueOnError="true">
    <Output TaskParameter="ExitCode" ItemName="QtpExitCode"/>
</Exec>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文