4,461
edits
→Post-installation updates: add PHPUnit installation note |
→Post-installation updates: add a comment about phpunit.xml file |
||
Line 120: | Line 120: | ||
I add the application short name as an extension to <span class="package">artisan</span> because I have multiple instances of Laravel applications and create links to corresponding <span class="package">artisan</span> executables. | I add the application short name as an extension to <span class="package">artisan</span> because I have multiple instances of Laravel applications and create links to corresponding <span class="package">artisan</span> executables. | ||
===== For unit testing ===== | |||
It's also good idea to install PHPUnit, especially if you're interested in taking the TDD approach to development. | It's also good idea to install PHPUnit, especially if you're interested in taking the TDD approach to development. | ||
Line 128: | Line 130: | ||
</span> | </span> | ||
</div> | </div> | ||
I also want the unit testing to stop on a failure. You can change <span class="package">stopOnFailure</span> attribute to <span class="package">true</span> in <span class="shell">phpunit.xml</span> file. | |||
== Configuration == | == Configuration == |