Alexander Makarov 3ffc027302 Used ternary operator instead of "or" for constant definition 12 years ago
..
_data 955f351e6d Added acceptance tests for the basic app. 12 years ago
_helpers 09237c013e cleanup and re-aranged codeception tests for basic app 12 years ago
_log 955f351e6d Added acceptance tests for the basic app. 12 years ago
_pages d9ff05cb75 Fixed test break. 12 years ago
acceptance c2c3c22ff5 Further coding standards fixes. 12 years ago
functional c2c3c22ff5 Further coding standards fixes. 12 years ago
unit 4e188239cf Closing and opening braces in Yii2 coding standards. 12 years ago
.gitignore f22abd70e2 removed auto generated files from repo 12 years ago
README.md e5195ef76e Reordered items 12 years ago
_bootstrap.php 3ffc027302 Used ternary operator instead of "or" for constant definition 12 years ago
_config.php ae60df4599 move showScriptName into the common config of tests 12 years ago
_console_bootstrap.php 3ffc027302 Used ternary operator instead of "or" for constant definition 12 years ago
acceptance.suite.yml d703b819b8 docs added 12 years ago
functional.suite.yml ddee0621ec Reverted config change 12 years ago
unit.suite.yml 749d72c33b fixed unit test config. 12 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: 1.8.*@dev" "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.