Diferencia entre revisiones de «PHPUnit»
Ir a la navegación
Ir a la búsqueda
([feat] Add information PHPUnit) |
|||
Línea 22: | Línea 22: | ||
php artisan test ./tests/Feature | php artisan test ./tests/Feature | ||
Revisión actual - 21:21 6 abr 2023
General
Recursos
- Sitio oficial: EN
Crear test
Feature test
php artisan make:test HomepageTest
Unit test
php artisan make:test HomepageTest --unit
Hacer correr los tests
php artisan test
Hacer correr solo los test features
php artisan test ./tests/Feature