yii2-netdisk/tests
Qiang Xue 24151471d5 Merge pull request #2383 from Ragazzo/add_yii_command_to_tests
added yii console command to tests
2014-02-15 11:32:07 -05:00
..
_data Added acceptance tests for the basic app. 2013-06-22 20:26:22 -04:00
_helpers cleanup and re-aranged codeception tests for basic app 2013-12-17 00:27:33 +01:00
_log Added acceptance tests for the basic app. 2013-06-22 20:26:22 -04:00
_pages Fixed test break. 2014-02-13 21:18:43 -05:00
acceptance added yii console command to tests 2014-02-09 19:04:26 +04:00
functional added yii console command to tests 2014-02-09 19:04:26 +04:00
unit Merge pull request #2383 from Ragazzo/add_yii_command_to_tests 2014-02-15 11:32:07 -05:00
_bootstrap.php path fixes. 2014-01-10 21:58:50 -05:00
_config.php move showScriptName into the common config of tests 2013-12-31 16:21:15 +04:00
_console_bootstrap.php added yii console command to tests 2014-02-09 19:04:26 +04:00
.gitignore removed auto generated files from repo 2013-12-17 00:45:25 +01:00
acceptance.suite.yml docs added 2014-02-07 04:24:58 +04:00
functional.suite.yml Reverted config change 2014-01-03 23:07:50 +01:00
README.md Reordered items 2014-02-07 18:58:17 +03:00
unit.suite.yml fixed unit test config. 2013-12-29 16:25:22 -05:00

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: *"
    
  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.