| Package Data | |
|---|---|
| Maintainer Username: | rtablada |
| Maintainer Contact: | ryan.tablada@gmail.com (Ryan Tablada) |
| Package Create Date: | 2013-07-12 |
| Package Last Update: | 2013-07-12 |
| Language: | PHP |
| License: | Unknown |
| Last Refreshed: | 2025-11-11 03:07:46 |
| Package Statistics | |
|---|---|
| Total Downloads: | 23 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
This package helps you to organize your tests into smaller testsuites to speed up unit testing in Laravel without having to resort to a heavier testing framework like codeception.
Simply create a folder within your tests folder and name it what you whatever you want.
For a unit testsuite, I would create a unit folder and run the suite using art test unit.
It's that simple!
If you have Laravel 4 Package Installer installed you can install Laravel 4 Testsuites by running php artisan package:install rtablada/laravel-testsuites.
If you do not have Pacakge Installer, you can install Wardrobe Disqus by running composer require rtablada/laravel-testsuites and then modifying your providers in app/config/app.php to include Rtablada\Testsuites\TestsuitesServiceProvider.
Laravel 4 Testsuites gives you two options when running tests:
php artisan test - Runs all of your tests a shorthand for running phpunitphp artisan test suiteName - Runs all of the tests within a folder with suiteName within your tests directory in a standard Laravel 4 installation.