pprocess
1.0.0
테스트를 위해 비동기 모드에서 프로세스를 실행합니다.
PhpUnit용 이 확장은 비동기 모드에서 실행되는 프로세스의 버그를 테스트하는 데 도움이 됩니다. PProcess는 교착 상태, 중복 키와의 충돌 및 비동기 프로세스의 기타 버그를 테스트하는 데 도움이 됩니다.
<?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 ));
}
}
작곡가 사용:
composer require mnvx/pprocess --dev
MIT 라이선스로 출시됨