Maintenance

We choose Test-driven development(TDD) agile methodology because it ensures source code is thoroughly tested at confirmatory level. We used PHPUnit testing within our laravel application

Unit Tests Feature Tests Total Tests Assertions
72 501 573 1939

You can run whole test suite as

./vendor/bin/phpunit

To run particular test file

./vendor/bin/phpunit --filter <name of test file>

To run particular test

./vendor/bin/phpunit --filter <name of test>

To run all unit tests

./vendor/bin/phpunit --filter unit

To run all feature tests

./vendor/bin/phpunit --filter feature