Alexander Makarov 539a6f0c59 Codeceoption adjustments il y a 11 ans
..
_data 955f351e6d Added acceptance tests for the basic app. il y a 12 ans
_log 955f351e6d Added acceptance tests for the basic app. il y a 12 ans
_pages 93cc82c4bf Reformat code te be PSR-2 compatible il y a 12 ans
acceptance bcf51a1156 Add wait() to login test with wrong credentials to fix WebDriver test il y a 12 ans
functional 93cc82c4bf Reformat code te be PSR-2 compatible il y a 12 ans
unit 91f05a2891 Fixes #4071: `mail` component renamed to `mailer`, `yii\log\EmailTarget::$mail` renamed to `yii\log\EmailTarget::$mailer` il y a 11 ans
.gitignore f22abd70e2 removed auto generated files from repo il y a 12 ans
README.md 0c8c520cbb Switched to Codeception 2.0.* for application template tests il y a 11 ans
_bootstrap.php be3c8c5e80 added server name, for creating url rules il y a 12 ans
_config.php aa6c41046e Missing files for #4071 il y a 11 ans
_console_bootstrap.php 58de43ef0f added yii console command to tests il y a 12 ans
acceptance.suite.yml 539a6f0c59 Codeceoption adjustments il y a 11 ans
functional.suite.yml 539a6f0c59 Codeceoption adjustments il y a 11 ans
unit.suite.yml 539a6f0c59 Codeceoption adjustments il y a 11 ans

README.md

This folder contains various tests for the basic application. These tests are developed with Codeception PHP Testing Framework.

After creating the basic application, follow these steps to prepare for the tests:

  1. Install additional composer packages:
   php composer.phar require --dev "codeception/codeception: 2.0.*" "codeception/specify: *" "codeception/verify: *"
  1. In the file _bootstrap.php, modify the definition of the constant TEST_ENTRY_URL so that it points to the correct entry script URL.
  2. Go to the application base directory and build the test suites:
   vendor/bin/codecept build

Now you can run the tests with the following commands:

# run all available tests
vendor/bin/codecept run
# run acceptance tests
vendor/bin/codecept run acceptance
# run functional tests
vendor/bin/codecept run functional
# run unit tests
vendor/bin/codecept run unit

Please refer to Codeception tutorial for more details about writing and running acceptance, functional and unit tests.