SonicGD 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
..
_data 955f351e6d Added acceptance tests for the basic app. vor 12 Jahren
_helpers 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
_log 955f351e6d Added acceptance tests for the basic app. vor 12 Jahren
_pages 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
acceptance 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
functional 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
unit 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
.gitignore f22abd70e2 removed auto generated files from repo vor 12 Jahren
README.md e5195ef76e Reordered items vor 12 Jahren
_bootstrap.php be3c8c5e80 added server name, for creating url rules vor 12 Jahren
_config.php 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
_console_bootstrap.php 58de43ef0f added yii console command to tests vor 12 Jahren
acceptance.suite.yml 93cc82c4bf Reformat code te be PSR-2 compatible vor 12 Jahren
functional.suite.yml ddee0621ec Reverted config change vor 12 Jahren
unit.suite.yml 749d72c33b fixed unit test config. vor 12 Jahren

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.