Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Alexander Makarov 2f19030e37 Switched to Codeception 2.0.* for application template tests 10 years ago
..
_data Added acceptance tests for the basic app. 11 years ago
_helpers Reformat code te be PSR-2 compatible 11 years ago
_log Added acceptance tests for the basic app. 11 years ago
_pages Reformat code te be PSR-2 compatible 11 years ago
acceptance Add wait() to login test with wrong credentials to fix WebDriver test 11 years ago
functional Reformat code te be PSR-2 compatible 11 years ago
unit Fixes #4071: `mail` component renamed to `mailer`, `yii\log\EmailTarget::$mail` renamed to `yii\log\EmailTarget::$mailer` 10 years ago
.gitignore removed auto generated files from repo 11 years ago
README.md Switched to Codeception 2.0.* for application template tests 10 years ago
_bootstrap.php Revert "Used ternary operator instead of "or" for constant definition" 11 years ago
_config.php Missing files for #4071 10 years ago
_console_bootstrap.php Revert "Used ternary operator instead of "or" for constant definition" 11 years ago
acceptance.suite.yml Reformat code te be PSR-2 compatible 11 years ago
functional.suite.yml Reverted config change 11 years ago
unit.suite.yml fixed unit test config. 11 years ago

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: *"
    
  2. In the file _bootstrap.php, modify the definition of the constant TEST_ENTRY_URL so that it points to the correct entry script URL.

  3. 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.