zaza9084 发表于 2019-2-18 10:48:59

How to make your test automation run in parallel?

原文作者:Nikolay Advolodkin
作者联系方式:无
原文地址链接:https://techbeacon.com
推荐理由:值得推荐的自动化测试干货

  At some point in your test automation, you will run into a common problem: Too many automated UI tests take too long to execute.   The most powerful way to speed things up is to execute tests in parallel. Unfortunately, getting automated tests to run in parallel is not so easy. Typically, thread safety is not something that is baked into automation. Thread safety ensures that the code is written so that a program can run and manipulate data structures without unintended consequences.  There are mandatory requirements for tests that can run in parallel. These are the same conditions that some of our customers use to help run 50,000 automated tests per day. Here are the four requirements.  1. Your tests must be atomic
  Your automated tests should form a single irreducible unit. This means tests should be extremely focused, and each should test just one thing. A single automated test should not test something such as end-to-end automation.


......(下载附件即可查看原文)【申请翻译方式】① 发送一段试译内容到我们的邮箱 editor@51testing.com,通过后即可翻译② 加小编 QQ:1718403480,备注:翻译试译
【翻译奖励】
① 翻译文章经过评审入选后,即可发布在《51测试天地》电子刊物中,并有相应稿费支付!还有机会上网站头条,得到大力宣传!
② 未入选文章,联系小编(QQ:1718403480),也可以获得博为峰网校10元代金券
http://bbs.51testing.com/data/attachment/forum/201708/11/134250kizfsi3ixiif8ggp.jpg如果你想锻炼自己的翻译能力,或者想学习最新最热的技术内容,欢迎加入到我们的翻译队伍中来!!
页: [1]
查看完整版本: How to make your test automation run in parallel?