Qiang Xue 64bb3cde39 removed duplicated test config. %!s(int64=12) %!d(string=hai) anos
..
_data 955f351e6d Added acceptance tests for the basic app. %!s(int64=12) %!d(string=hai) anos
_helpers 09237c013e cleanup and re-aranged codeception tests for basic app %!s(int64=12) %!d(string=hai) anos
_log 955f351e6d Added acceptance tests for the basic app. %!s(int64=12) %!d(string=hai) anos
_pages cdbafcfda2 Simplified tests. %!s(int64=12) %!d(string=hai) anos
acceptance 64bb3cde39 removed duplicated test config. %!s(int64=12) %!d(string=hai) anos
functional 64bb3cde39 removed duplicated test config. %!s(int64=12) %!d(string=hai) anos
unit 905e8ea4bc Fixes #1701. %!s(int64=12) %!d(string=hai) anos
.gitignore f22abd70e2 removed auto generated files from repo %!s(int64=12) %!d(string=hai) anos
README.md 35464e4fbf Fixes #1604: fixed URL and cookie problems. Refactored tests. %!s(int64=12) %!d(string=hai) anos
_bootstrap.php 905e8ea4bc Fixes #1701. %!s(int64=12) %!d(string=hai) anos
_config.php 905e8ea4bc Fixes #1701. %!s(int64=12) %!d(string=hai) anos
acceptance.suite.yml 35464e4fbf Fixes #1604: fixed URL and cookie problems. Refactored tests. %!s(int64=12) %!d(string=hai) anos
functional.suite.yml 35464e4fbf Fixes #1604: fixed URL and cookie problems. Refactored tests. %!s(int64=12) %!d(string=hai) anos
unit.suite.yml 749d72c33b fixed unit test config. %!s(int64=12) %!d(string=hai) anos

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.