Test d'unité Symfony

# run all tests of the application
php ./vendor/bin/phpunit

# run all tests in the Form/ directory
php ./vendor/bin/phpunit tests/Form

# run tests for the UserType class
php ./vendor/bin/phpunit tests/Form/UserTypeTest.php
RealMyth21