Diferencia entre revisiones de «PHPUnit»
Ir a la navegación
Ir a la búsqueda
([feat] Add information about Laravel - Testing PHPUnit) |
([feat] Add information about Laravel - Testing PHPUnit) |
||
Línea 2: | Línea 2: | ||
== Crear test == | == Crear test == | ||
=== Features test === | |||
php artisan make:test HomepageTest | php artisan make:test HomepageTest | ||
=== Unit test === | |||
php artisan make:test HomepageTest --unit | |||
== Hacer correr los tests == | == Hacer correr los tests == |
Revisión del 07:21 15 ago 2022
General
Crear test
Features 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