├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── coverage-checker.php ├── phpunit.xml ├── src ├── AssertsPromise.php └── TestCase.php └── tests ├── AboutPromiseTest.php ├── PromiseFulfillsTest.php ├── PromiseFulfillsWithInstanceOfTest.php ├── PromiseFulfillsWithTest.php ├── PromiseRejectsTest.php ├── PromiseRejectsWithTest.php └── WaitForPromiseToFulfillTest.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/composer.json -------------------------------------------------------------------------------- /coverage-checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/coverage-checker.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AssertsPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/src/AssertsPromise.php -------------------------------------------------------------------------------- /src/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/src/TestCase.php -------------------------------------------------------------------------------- /tests/AboutPromiseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/tests/AboutPromiseTest.php -------------------------------------------------------------------------------- /tests/PromiseFulfillsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/tests/PromiseFulfillsTest.php -------------------------------------------------------------------------------- /tests/PromiseFulfillsWithInstanceOfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/tests/PromiseFulfillsWithInstanceOfTest.php -------------------------------------------------------------------------------- /tests/PromiseFulfillsWithTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/tests/PromiseFulfillsWithTest.php -------------------------------------------------------------------------------- /tests/PromiseRejectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/tests/PromiseRejectsTest.php -------------------------------------------------------------------------------- /tests/PromiseRejectsWithTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/tests/PromiseRejectsWithTest.php -------------------------------------------------------------------------------- /tests/WaitForPromiseToFulfillTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-react-promise-testing/HEAD/tests/WaitForPromiseToFulfillTest.php --------------------------------------------------------------------------------