Unit Test
Unit tests are used to ensure that your code has no syntax error and to test the logic of your code to work as what you expected. Quick example:
src/AppBundle/Calculator/BillCalculator.php
<?php
namespace AppBundle\Calculator;
use AppBundle\Calculator\TaxCalculator;
class Bi...