parallel-unit-test ¶
- Installation
- Create parallel test
- Run parallel test
- Code on https://github.com/petrgrishin/parallel-unit-test
Methodology of tests for parallel execution of code https://github.com/petrgrishin/parallel-unit-test
Installation ¶
Add a dependency and script to your project's composer.json: ~~~ [javascript] {
"require": {
"petrgrishin/parallel-unit-test": "dev-master"
},
"scripts": {
"test:parallel": "/usr/bin/env php vendor/petrgrishin/parallel-unit-test/src/cli.php test:parallel ./home-path-for-tests"
}
} ~~~
Create parallel test ¶
<?php
class SimpleParallelTest extends \PHPUnit_Framework_TestCase{
/**
* @group before
*/
public function testInit() {
//One run before parallel tests
}
/**
* @group parallel
*/
public function test() {
//Will be launched in three parallel streams
$this->assertTrue(true);
}
}
Run parallel test ¶
composer test:parallel
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.