yii2-netdisk/tests
2013-12-31 23:02:10 +04: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 Simplified tests. 2013-12-28 19:26:18 -05:00
acceptance tests improved, aspect mock changes reverted 2013-12-31 23:02:10 +04:00
functional tests improved, aspect mock changes reverted 2013-12-31 23:02:10 +04:00
unit tests improved, aspect mock changes reverted 2013-12-31 23:02:10 +04:00
_bootstrap.php tests improved, aspect mock changes reverted 2013-12-31 23:02:10 +04:00
_config.php Fixes #1701. 2013-12-30 09:22:18 -05:00
.gitignore removed auto generated files from repo 2013-12-17 00:45:25 +01:00
acceptance.suite.yml Fixes #1604: fixed URL and cookie problems. Refactored tests. 2013-12-28 15:04:08 -05:00
functional.suite.yml Fixes #1604: fixed URL and cookie problems. Refactored tests. 2013-12-28 15:04:08 -05:00
README.md Fixes #1604: fixed URL and cookie problems. Refactored tests. 2013-12-28 15:04:08 -05: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. 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.