mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 15:46:52 +03:00
16 lines
1.1 KiB
Plaintext
16 lines
1.1 KiB
Plaintext
<fg=white;bg=magenta> Bootstrapping Codeception </fg=white;bg=magenta>
|
|
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
|
|
<info>Codeception is installed for acceptance, functional, and unit testing</info>
|
|
<options=bold>Next steps:</options=bold>
|
|
1. Edit <options=bold>tests/acceptance.suite.yaml</options=bold> to set url of your application. Change PhpBrowser to WebDriver to enable browser testing
|
|
2. Edit <options=bold>tests/functional.suite.yaml</options=bold> to enable a Doctrine module if needs.
|
|
3. Create your first acceptance tests using <comment>vendor/bin/codecept g:cest acceptance First</comment>
|
|
4. Write first test in <options=bold>tests/acceptance/FirstCest.php</options=bold>
|
|
5. Run tests using: <comment>vendor/bin/codecept run</comment>
|