Diferencia entre revisiones de «PHPUnit»
Ir a la navegación
Ir a la búsqueda
([feat] Add information about Laravel - Testing PHPUnit) |
|||
Línea 3: | Línea 3: | ||
== Crear test == | == Crear test == | ||
=== | === Feature test === | ||
php artisan make:test HomepageTest | php artisan make:test HomepageTest |
Revisión del 07:21 15 ago 2022
General
Crear test
Feature test
php artisan make:test HomepageTest
Unit test
php artisan make:test HomepageTest --unit
Hacer correr los tests
php artisan test
Recursos
- Sitio oficial: EN