├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist └── src ├── Collections ├── TestCollectionMacros.php └── TestCollectionMixin.php ├── Constraints ├── ViewEquals.php ├── ViewExists.php ├── ViewNotEquals.php └── ViewNotExists.php ├── InteractsWithViews.php └── Responses ├── TestResponseMacros.php └── TestResponseMixin.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Collections/TestCollectionMacros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Collections/TestCollectionMacros.php -------------------------------------------------------------------------------- /src/Collections/TestCollectionMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Collections/TestCollectionMixin.php -------------------------------------------------------------------------------- /src/Constraints/ViewEquals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Constraints/ViewEquals.php -------------------------------------------------------------------------------- /src/Constraints/ViewExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Constraints/ViewExists.php -------------------------------------------------------------------------------- /src/Constraints/ViewNotEquals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Constraints/ViewNotEquals.php -------------------------------------------------------------------------------- /src/Constraints/ViewNotExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Constraints/ViewNotExists.php -------------------------------------------------------------------------------- /src/InteractsWithViews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/InteractsWithViews.php -------------------------------------------------------------------------------- /src/Responses/TestResponseMacros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Responses/TestResponseMacros.php -------------------------------------------------------------------------------- /src/Responses/TestResponseMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/laravel-testing-utils/HEAD/src/Responses/TestResponseMixin.php --------------------------------------------------------------------------------