mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-14 16:46:30 +03:00
* Update post-install.txt Minor typos * Update post-install.txt * Update Acceptance.suite.yml Aligning to https://github.com/Codeception/Codeception/pull/6735
14 lines
879 B
Plaintext
14 lines
879 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 acceptance, functional, and unit testing</>
|
|
<options=bold>Next steps:</>
|
|
1. Edit <options=bold>tests/Functional.suite.yml</> to enable the 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</>
|