Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #56070


Ignore:
Timestamp:
06/24/2022 10:43:02 PM (3 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #56070 – Description

    initial v1  
    4747 * Description.
    4848 *
    49  * @ticket
    5049 * @since x.x.x
     50 * @ticket 12345
    5151 *
    5252 * @group group_name_1
     
    7878Notes:
    7979* 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.
    8181* `@group` and `@covers` are separated into their own sections for better readability when a test belongs to multiple groups and/or covers multiple functions.
    8282* `@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.