sofa / laravel-test-generator
Don't write boilerplate for your feature tests in a Laravel project
Fund package maintenance!
jarektkaczyk
softonsofa.com
Requires
- php: ^7.4
- illuminate/routing: 7.*
- nette/php-generator: ^3.4
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-10-29 05:53:47 UTC
README
Don't write boilerplate for your feature tests! This package scans all the routes in your Laravel app and generates skeleton for testing them.
Installation
You can install the package via composer:
composer require jarektkaczyk/package-laravel-test-generator-laravel
You can publish the config file with and customize it afterwards in config/test_generator.php
:
php artisan vendor:publish --provider="Sofa\LaravelTestGenerator\LaravelTestGeneratorServiceProvider" --tag="config"
Usage
php artisan generate:feature-tests
Roadmap
- support for PHPUnit driver
- generate new test classes
- bare happy path case
- bare failing path case
- parse route model binding and build setup for tests accordingly
- (OPTIONAL) parse requests and build setup for tests accordingly - might be too complex in many cases
- (OPTIONAL) update existing test classes with new methods (not trivial with
nette/php-generator
, find better way?)
- support for different drivers
- (OPTIONAL) other drivers
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email jarek@softonsofa.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.