Unit Tests
Table of contents
1. Overview Table of Contents
The Chappy.php framework has basic support for unit testing. You can make your own PHPUnit test class by running the following command:
php console make:Test ${TestName}
After running the command a new file is created inside the tests
directory under project root. Once you implemented your test you it can be executed by running the following command:
php console test:run-test ${TestName}