Changes between Initial Version and Version 1 of Ticket #56070
- Timestamp:
- 06/24/2022 10:43:02 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #56070 – Description
initial v1 47 47 * Description. 48 48 * 49 * @ticket50 49 * @since x.x.x 50 * @ticket 12345 51 51 * 52 52 * @group group_name_1 … … 78 78 Notes: 79 79 * All of these annotations are optional and may not be present on a particular test, so most of the time the DocBlock would be much shorter. But if they are present, the order should be consistent across the test suite. 80 * `@ ticket` and `@since` are grouped together because they are both related to when a test was introduced.80 * `@since` and `@ticket` are grouped together because they are both related to when a test was introduced. 81 81 * `@group` and `@covers` are separated into their own sections for better readability when a test belongs to multiple groups and/or covers multiple functions. 82 82 * `@depends` and `@dataProvider` are grouped together and moved closer to globals and parameters, because they are both related to passing data to the test. When reviewing the current usage of `@depends` in the test suite, I found some instances that don't pass any data but seem to (incorrectly) assume that this annotation defines the order in which the tests are executed. That can be addressed separately.