Diferencia entre revisiones de «PHPUnit»

De Wiki Proyectos Beta
Ir a la navegación Ir a la búsqueda
Línea 13: Línea 13:
== Hacer correr los tests ==
== Hacer correr los tests ==


  php artisan test  
  php artisan test
 
== Hacer correr solo los test features ==
 
php artisan test ./tests/Feature


= Recursos =
= Recursos =


* Sitio oficial: [https://laravel.com/docs/9.x/testing EN]
* Sitio oficial: [https://laravel.com/docs/9.x/testing EN]

Revisión del 07:02 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

Hacer correr solo los test features

php artisan test ./tests/Feature

Recursos

  • Sitio oficial: EN