Yii2 Bootstrap 3
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.
 
 
Qiang Xue 53daaf81ef Merge pull request #1714 from Ragazzo/tests_improved 11 years ago
..
_data Added acceptance tests for the basic app. 11 years ago
_helpers cleanup and re-aranged codeception tests for basic app 11 years ago
_log Added acceptance tests for the basic app. 11 years ago
_pages Simplified tests. 11 years ago
acceptance tests improved, aspect mock changes reverted 11 years ago
functional tests improved, aspect mock changes reverted 11 years ago
unit CS fix 11 years ago
.gitignore removed auto generated files from repo 11 years ago
README.md Fixes #1604: fixed URL and cookie problems. 11 years ago
_bootstrap.php tests improved, aspect mock changes reverted 11 years ago
_config.php move showScriptName into the common config of tests 11 years ago
acceptance.suite.yml Fixes #1604: fixed URL and cookie problems. 11 years ago
functional.suite.yml Fixes #1604: fixed URL and cookie problems. 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. 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.