2017 © Pedro Peláez
 

library laravel-testsuites

A Laravel 4 helper command for organizing and running phpunit testsuites

image

rtablada/laravel-testsuites

A Laravel 4 helper command for organizing and running phpunit testsuites

  • Friday, July 12, 2013
  • by rtablada
  • Repository
  • 1 Watchers
  • 0 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel 4 Testsuites

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., (*1)

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!, (*2)

Installation Using Laravel 4 Package Installer

If you have Laravel 4 Package Installer installed you can install Laravel 4 Testsuites by running php artisan package:install rtablada/laravel-testsuites., (*3)

Installing Using Composer

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., (*4)

Using This Package

Laravel 4 Testsuites gives you two options when running tests:, (*5)

  1. php artisan test - Runs all of your tests a shorthand for running phpunit
  2. php artisan test suiteName - Runs all of the tests within a folder with suiteName within your tests directory in a standard Laravel 4 installation.

The Versions

12/07 2013

dev-master

9999999-dev

A Laravel 4 helper command for organizing and running phpunit testsuites

  Sources   Download

The Requires

 

The Development Requires

laravel tdd testing lpm