mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
14 lines
878 B
Plaintext
14 lines
878 B
Plaintext
codeception.yml written <- Global configuration
|
|
tests/Unit/ created <- Unit tests
|
|
tests/Unit.suite.yml written <- Unit test suite configuration
|
|
tests/Functional/ created <- Functional tests
|
|
tests/Functional.suite.yml written <- Functional test suite configuration
|
|
tests/Acceptance/ created <- Acceptance tests
|
|
tests/Acceptance.suite.yml written <- Acceptance test suite configuration
|
|
<info>Codeception is installed for unit, functional, and acceptance testing</>
|
|
<options=bold>Next steps:</>
|
|
1. Edit <options=bold>tests/Functional.suite.yml</> to enable the Doctrine module if needed
|
|
2. Create your first functional test using <comment>vendor/bin/codecept generate:cest Functional First</>
|
|
3. Write your first test in <options=bold>tests/Functional/FirstCest.php</>
|
|
4. Run tests with: <comment>vendor/bin/codecept run</>
|