Locally :
vagrant up
VM :
vagrant ssh
cd /var/www/sf3fresh/current
# Install depedencies from composer then assets
./phing.sh composer.install
./phing.sh symfony.install-assets-symlink
# Create database
mysql -u root -psf3fresh -e "create database sf3fresh;"
Play: https://sf3fresh.local/
The application embeds the PHPUnit testing framework on the development environment.
Follow the Symfony documentation to create your unit test or copy/paste one of the samples into your bundle at tests/<YourName>/<YourBundleName>/
.
To run the unit tests:
./phing.sh phpunit.run