课程: Software Testing Foundations: Continuous Testing and DevOps
今天就学习课程吧!
今天就开通帐号,24,700 门业界名师课程任您挑!
What is parallel testing? - Jenkins教程
课程: Software Testing Foundations: Continuous Testing and DevOps
What is parallel testing?
- [Narrator] What is parallel testing? Well, in serial testing, you can run tests end to end in a series, one test starts finishes, then the next test runs. In parallel testing, you have multiple tests running side by side, they stop and start alongside each other. When tests are executed in parallel, the overall execution time of the test suite is a lot shorter. In theory, instead of having a suite of say, four one minute tests running four minutes end to end. You could have a suite of four, one minute tests running side by side in about a minute. Additionally, depending on how you license web resources, parallel testing can save you money because it saves execution time. The reality of course, is a little bit more complicated than that. It also depends on your execution environment. Factors like the number of processors you have, the capabilities of those processors and what language you've written your tests…