Bootstrapping Codeception
File codeception.yaml created <- global configuration
tests/unit created <- unit tests
tests/unit.suite.yaml written <- unit tests suite configuration
tests/functional created <- functional tests
tests/functional.suite.yaml written <- functional tests suite configuration
tests/acceptance created <- acceptance tests
tests/acceptance.suite.yaml written <- acceptance tests suite configuration
Codeception is installed for acceptance, functional, and unit testing
Next steps:
1. Edit tests/acceptance.suite.yaml to set url of your application. Change PhpBrowser to WebDriver to enable browser testing
2. Edit tests/functional.suite.yaml to enable a Doctrine module if needs.
3. Create your first acceptance tests using vendor/bin/codecept g:cest acceptance First
4. Write first test in tests/acceptance/FirstCest.php
5. Run tests using: vendor/bin/codecept run