pprocess
1.0.0
Exécution de processus en mode asynchrone pour les tests.
Cette extension pour PhpUnit vous aidera à tester les bugs dans les processus qui s'exécutent en mode asynchrone. PProcess vous aidera à tester les blocages, les conflits avec les clés en double et autres bugs dans les processus asynchrones.
<?php
use PHPUnit Framework TestCase ;
use Mnvx PProcess Command Command ;
use Mnvx PProcess AsyncTrait ;
/**
* Class AsyncTest
*
* @use ./vendor/bin/phpunit tests/AsyncTest.php
*/
class AsyncTest extends TestCase
{
use AsyncTrait;
public function testCommandMustBeExecutedInAsyncMode ()
{
// For Laravel
$ testCommand = " php artisan my-command-one --env=testing " ;
$ this -> assertAsyncCommand ( new Command ( $ testCommand , dirname ( dirname ( __FILE__ )), 5 ));
}
public function testCommandMustNotBeExecutedInAsyncMode ()
{
// For Symfony
$ testCommand = " bin/console my-command-two --env=testing " ;
$ this -> assertNotAsyncCommand ( new Command ( $ testCommand , dirname ( dirname ( __FILE__ )), 5 ));
}
}
Utilisation du compositeur :
composer require mnvx/pprocess --dev
Publié sous licence MIT