├── .github └── workflows │ └── ci.yml ├── .php-cs-fixer.dist.php ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── AsyncTestCase.php ├── CallbackStub.php ├── TestException.php └── UnhandledException.php └── test ├── AsyncTestCaseTest.php └── InvalidAsyncTestCaseTest.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AsyncTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/src/AsyncTestCase.php -------------------------------------------------------------------------------- /src/CallbackStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/src/CallbackStub.php -------------------------------------------------------------------------------- /src/TestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/src/TestException.php -------------------------------------------------------------------------------- /src/UnhandledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/src/UnhandledException.php -------------------------------------------------------------------------------- /test/AsyncTestCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/test/AsyncTestCaseTest.php -------------------------------------------------------------------------------- /test/InvalidAsyncTestCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/phpunit-util/HEAD/test/InvalidAsyncTestCaseTest.php --------------------------------------------------------------------------------