adding data provider notes in the README

This commit is contained in:
Nicola Mustone 2015-04-14 15:40:20 +02:00
parent 0347a4005f
commit d4508bed9c
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ A text code coverage summary can be displayed using the `--coverage-text` option
* Prefer `assertsEquals()` where possible as it tests both type & equality
* Remember that only methods prefixed with `test` will be run so use helper methods liberally to keep test methods small and reduce code duplication. If there is a common helper method used in multiple test files, consider adding it to the `WC_Unit_Test_Case` class so it can be shared by all test cases
* Filters persist between test cases so be sure to remove them in your test method or in the `tearDown()` method.
* Use data providers where possibl. Be sure that their name is like `data_provider_function_to_test` (i.e. the data provider for `test_is_postcode` would be `data_provider_test_is_postcode`). Read more about data providers [here](https://phpunit.de/manual/current/en/writing-tests-for-phpunit.html#writing-tests-for-phpunit.data-providers).
## Automated Tests