Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/petrgrishin/parallel-unit-test
PHP. Methodology of tests for parallel execution of code
https://github.com/petrgrishin/parallel-unit-test
Last synced: 3 months ago
JSON representation
PHP. Methodology of tests for parallel execution of code
- Host: GitHub
- URL: https://github.com/petrgrishin/parallel-unit-test
- Owner: petrgrishin
- Created: 2015-03-25T19:42:34.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-25T21:19:22.000Z (almost 10 years ago)
- Last Synced: 2024-04-17T03:56:15.103Z (9 months ago)
- Language: PHP
- Homepage: https://github.com/petrgrishin/parallel-unit-test
- Size: 141 KB
- Stars: 6
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# parallel-unit-test
Methodology of tests for parallel execution of code## Installation
Add a dependency and script to your project's composer.json:
```json
{
"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
assertTrue(true);
}
}
```## Run parallel test
```shel
composer test:parallel
```