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