Create Test Files With Artisan Make Commands Automatically
Published on by Paul Redmond
The Laravel make-testable package creates a test along with any class created using php artisan make:*
commands. After installing this package a development dependency, you can use it by adding the --test
flag to make commands:
# Beforephp artisan make:model Blogphp artisan make:test Models\BlogTest --unit # Afterphp artisan make:model Blog --test
This package supports the following commands:
- Command
- Controller
- Event
- Job
- Listener
- Middleware
- Model
- Notification
You can learn more about this package, get full installation instructions, and view the source code on GitHub at iaK/make-testable.
This package was submitted to our Laravel News Links section. Links is a place the community can post packages and tutorials around the Laravel ecosystem. Follow along on Twitter @LaravelLinks