Make WordPress Core


Ignore:
Timestamp:
08/25/2020 12:57:17 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: Clean up some existing @covers tags.

The () at the end is unnecessary and disregarded by PHPUnit, so can be removed.

Props jrf.
See #39265.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/general/wpError.php

    r46586 r48858  
    101101
    102102    /**
    103      * @covers ::get_error_codes()
     103     * @covers ::get_error_codes
    104104     */
    105105    public function test_get_error_codes_with_no_errors_should_return_empty_array() {
     
    108108
    109109    /**
    110      * @covers ::get_error_codes()
     110     * @covers ::get_error_codes
    111111     */
    112112    public function test_get_error_codes_with_one_error_should_return_an_array_with_only_that_code() {
     
    117117
    118118    /**
    119      * @covers ::get_error_codes()
     119     * @covers ::get_error_codes
    120120     */
    121121    public function test_get_error_codes_with_multiple_errors_should_return_an_array_of_those_codes() {
     
    129129
    130130    /**
    131      * @covers ::get_error_code()
     131     * @covers ::get_error_code
    132132     */
    133133    public function test_get_error_code_with_no_errors_should_return_an_empty_string() {
     
    136136
    137137    /**
    138      * @covers ::get_error_code()
     138     * @covers ::get_error_code
    139139     */
    140140    public function test_get_error_code_with_one_error_should_return_that_error_code() {
     
    145145
    146146    /**
    147      * @covers ::get_error_code()
     147     * @covers ::get_error_code
    148148     */
    149149    public function test_get_error_code_with_multiple_errors_should_return_only_the_first_error_code() {
     
    155155
    156156    /**
    157      * @covers ::get_error_messages()
     157     * @covers ::get_error_messages
    158158     */
    159159    public function test_get_error_messages_with_empty_code_and_no_errors_should_return_an_empty_array() {
     
    162162
    163163    /**
    164      * @covers ::get_error_messages()
     164     * @covers ::get_error_messages
    165165     */
    166166    public function test_get_error_messages_with_empty_code_one_error_should_return_an_array_with_that_message() {
     
    171171
    172172    /**
    173      * @covers ::get_error_messages()
     173     * @covers ::get_error_messages
    174174     */
    175175    public function test_get_error_messages_with_empty_code_multiple_errors_should_return_an_array_of_messages() {
     
    181181
    182182    /**
    183      * @covers ::get_error_messages()
     183     * @covers ::get_error_messages
    184184     */
    185185    public function test_get_error_messages_with_an_invalid_code_should_return_an_empty_array() {
     
    188188
    189189    /**
    190      * @covers ::get_error_messages()
     190     * @covers ::get_error_messages
    191191     */
    192192    public function test_get_error_messages_with_one_error_should_return_an_array_with_that_message() {
     
    197197
    198198    /**
    199      * @covers ::get_error_messages()
     199     * @covers ::get_error_messages
    200200     */
    201201    public function test_get_error_messages_with_multiple_errors_same_code_should_return_an_array_with_all_messages() {
     
    207207
    208208    /**
    209      * @covers ::get_error_message()
     209     * @covers ::get_error_message
    210210     */
    211211    public function test_get_error_message_with_empty_code_and_no_errors_should_return_an_empty_string() {
     
    214214
    215215    /**
    216      * @covers ::get_error_message()
     216     * @covers ::get_error_message
    217217     */
    218218    public function test_get_error_message_with_empty_code_and_one_error_should_return_that_message() {
     
    223223
    224224    /**
    225      * @covers ::get_error_message()
     225     * @covers ::get_error_message
    226226     */
    227227    public function test_get_error_message_with_empty_code_and_multiple_errors_should_return_the_first_message() {
     
    233233
    234234    /**
    235      * @covers ::get_error_message()
     235     * @covers ::get_error_message
    236236     */
    237237    public function test_get_error_message_with_empty_code_and_multiple_errors_multiple_codes_should_return_the_first_message() {
     
    244244
    245245    /**
    246      * @covers ::get_error_message()
     246     * @covers ::get_error_message
    247247     */
    248248    public function test_get_error_message_with_invalid_code_and_no_errors_should_return_empty_string() {
     
    251251
    252252    /**
    253      * @covers ::get_error_message()
     253     * @covers ::get_error_message
    254254     */
    255255    public function test_get_error_message_with_invalid_code_and_one_error_should_return_an_empty_string() {
     
    260260
    261261    /**
    262      * @covers ::get_error_message()
     262     * @covers ::get_error_message
    263263     */
    264264    public function test_get_error_message_with_invalid_code_and_multiple_errors_should_return_an_empty_string() {
     
    270270
    271271    /**
    272      * @covers ::get_error_data()
     272     * @covers ::get_error_data
    273273     */
    274274    public function test_get_error_data_with_empty_code_and_no_errors_should_evaluate_as_null() {
     
    277277
    278278    /**
    279      * @covers ::get_error_data()
     279     * @covers ::get_error_data
    280280     */
    281281    public function test_get_error_data_with_empty_code_one_error_no_data_should_evaluate_as_null() {
     
    286286
    287287    /**
    288      * @covers ::get_error_data()
     288     * @covers ::get_error_data
    289289     */
    290290    public function test_get_error_data_with_empty_code_multiple_errors_no_data_should_evaluate_as_null() {
     
    296296
    297297    /**
    298      * @covers ::get_error_data()
     298     * @covers ::get_error_data
    299299     */
    300300    public function test_get_error_data_with_empty_code_and_one_error_with_data_should_return_that_data() {
     
    306306
    307307    /**
    308      * @covers ::get_error_data()
     308     * @covers ::get_error_data
    309309     */
    310310    public function test_get_error_data_with_empty_code_and_multiple_errors_different_codes_should_return_the_last_data_of_the_first_code() {
     
    317317
    318318    /**
    319      * @covers ::get_error_data()
     319     * @covers ::get_error_data
    320320     */
    321321    public function test_get_error_data_with_empty_code_and_multiple_errors_same_code_should_return_the_last_data_of_the_first_code() {
     
    328328
    329329    /**
    330      * @covers ::get_error_data()
     330     * @covers ::get_error_data
    331331     */
    332332    public function test_get_error_data_with_code_and_no_errors_should_evaluate_as_null() {
     
    335335
    336336    /**
    337      * @covers ::get_error_data()
     337     * @covers ::get_error_data
    338338     */
    339339    public function test_get_error_data_with_code_and_one_error_with_no_data_should_evaluate_as_null() {
     
    344344
    345345    /**
    346      * @covers ::get_error_data()
     346     * @covers ::get_error_data
    347347     */
    348348    public function test_get_error_data_with_code_and_one_error_with_data_should_return_that_data() {
     
    354354
    355355    /**
    356      * @covers ::get_error_data()
     356     * @covers ::get_error_data
    357357     */
    358358    public function test_get_error_data_with_code_and_multiple_errors_different_codes_should_return_the_last_stored_data_of_the_code() {
     
    366366
    367367    /**
    368      * @covers ::get_error_data()
     368     * @covers ::get_error_data
    369369     */
    370370    public function test_get_error_data_with_code_and_multiple_errors_same_code_should_return_the_last_stored_data() {
     
    377377
    378378    /**
    379      * @covers ::has_errors()
     379     * @covers ::has_errors
    380380     */
    381381    public function test_has_errors_with_no_errors_returns_false() {
     
    384384
    385385    /**
    386      * @covers ::has_errors()
     386     * @covers ::has_errors
    387387     */
    388388    public function test_has_errors_with_errors_returns_true() {
     
    392392
    393393    /**
    394      * @covers ::add()
     394     * @covers ::add
    395395     */
    396396    public function test_add_with_empty_code_empty_message_empty_data_should_add_empty_key_to_errors_array() {
     
    401401
    402402    /**
    403      * @covers ::add()
     403     * @covers ::add
    404404     */
    405405    public function test_add_with_empty_code_empty_message_empty_data_should_add_empty_message_to_errors_array_under_empty_key() {
     
    410410
    411411    /**
    412      * @covers ::add()
     412     * @covers ::add
    413413     */
    414414    public function test_add_with_empty_code_empty_message_empty_data_should_not_alter_data() {
     
    419419
    420420    /**
    421      * @covers ::add()
     421     * @covers ::add
    422422     */
    423423    public function test_add_with_empty_code_empty_message_non_empty_data_should_store_data_under_an_empty_code_key() {
     
    428428
    429429    /**
    430      * @covers ::add()
     430     * @covers ::add
    431431     */
    432432    public function test_add_with_code_empty_message_empty_data_should_add_error_with_code() {
     
    437437
    438438    /**
    439      * @covers ::add()
     439     * @covers ::add
    440440     */
    441441    public function test_add_with_code_empty_message_empty_data_should_add_error_with_empty_message() {
     
    446446
    447447    /**
    448      * @covers ::add()
     448     * @covers ::add
    449449     */
    450450    public function test_add_with_code_empty_message_empty_data_should_not_add_error_data() {
     
    455455
    456456    /**
    457      * @covers ::add()
     457     * @covers ::add
    458458     */
    459459    public function test_add_with_code_and_message_and_empty_data_should_should_add_error_with_that_message() {
     
    464464
    465465    /**
    466      * @covers ::add()
     466     * @covers ::add
    467467     */
    468468    public function test_add_with_code_and_message_and_empty_data_should_not_alter_stored_data() {
     
    473473
    474474    /**
    475      * @covers ::add()
     475     * @covers ::add
    476476     */
    477477    public function test_add_with_code_and_empty_message_and_data_should_add_error_with_that_code() {
     
    482482
    483483    /**
    484      * @covers ::add()
     484     * @covers ::add
    485485     */
    486486    public function test_add_with_code_and_empty_message_and_data_should_store_that_data() {
     
    491491
    492492    /**
    493      * @covers ::add()
     493     * @covers ::add
    494494     */
    495495    public function test_add_with_code_and_message_and_data_should_add_an_error_with_that_code() {
     
    500500
    501501    /**
    502      * @covers ::add()
     502     * @covers ::add
    503503     */
    504504    public function test_add_with_code_and_message_and_data_should_add_an_error_with_that_message() {
     
    509509
    510510    /**
    511      * @covers ::add()
     511     * @covers ::add
    512512     */
    513513    public function test_add_with_code_and_message_and_data_should_store_that_data() {
     
    518518
    519519    /**
    520      * @covers ::add()
     520     * @covers ::add
    521521     */
    522522    public function test_add_multiple_times_with_the_same_code_should_add_additional_messages_for_that_code() {
     
    530530
    531531    /**
    532      * @covers ::add()
     532     * @covers ::add
    533533     */
    534534    public function test_add_multiple_times_with_the_same_code_and_different_data_should_store_only_the_last_added_data() {
     
    540540
    541541    /**
    542      * @covers ::add_data()
     542     * @covers ::add_data
    543543     */
    544544    public function test_add_data_with_empty_data_empty_code_should_create_orphaned_data_with_no_error() {
     
    549549
    550550    /**
    551      * @covers ::add_data()
     551     * @covers ::add_data
    552552     */
    553553    public function test_add_data_with_empty_data_empty_code_no_errors_should_create_data_under_an_empty_code_key() {
     
    558558
    559559    /**
    560      * @covers ::add_data()
     560     * @covers ::add_data
    561561     */
    562562    public function test_add_data_with_data_empty_code_and_one_error_should_store_the_data_under_that_code() {
     
    568568
    569569    /**
    570      * @covers ::add_data()
     570     * @covers ::add_data
    571571     */
    572572    public function test_add_data_with_data_empty_code_and_multiple_errors_with_different_codes_should_store_it_under_the_first_code() {
     
    580580
    581581    /**
    582      * @covers ::add_data()
     582     * @covers ::add_data
    583583     */
    584584    public function test_add_data_with_data_empty_code_and_multiple_errors_with_same_code_should_store_it_under_the_first_code() {
     
    593593
    594594    /**
    595      * @covers ::add_data()
     595     * @covers ::add_data
    596596     */
    597597    public function test_add_data_with_data_and_code_and_no_errors_should_create_orphaned_data_with_no_error() {
     
    602602
    603603    /**
    604      * @covers ::add_data()
     604     * @covers ::add_data
    605605     */
    606606    public function test_add_data_with_data_and_code_no_errors_should_create_data_under_that_code_key() {
     
    611611
    612612    /**
    613      * @covers ::add_data()
     613     * @covers ::add_data
    614614     */
    615615    public function test_add_data_with_data_and_code_one_error_different_code_should_create_orphaned_data_with_no_error() {
     
    622622
    623623    /**
    624      * @covers ::add_data()
     624     * @covers ::add_data
    625625     */
    626626    public function test_add_data_with_data_and_code_one_error_different_code_should_create_data_under_that_code_key() {
     
    633633
    634634    /**
    635      * @covers ::add_data()
     635     * @covers ::add_data
    636636     */
    637637    public function test_add_data_with_data_and_code_should_add_data() {
     
    644644
    645645    /**
    646      * @covers ::remove()
     646     * @covers ::remove
    647647     */
    648648    public function test_remove_with_no_errors_should_affect_nothing() {
     
    657657
    658658    /**
    659      * @covers ::remove()
     659     * @covers ::remove
    660660     */
    661661    public function test_remove_empty_code_no_errors_should_affect_nothing() {
     
    670670
    671671    /**
    672      * @covers ::remove()
     672     * @covers ::remove
    673673     */
    674674    public function test_remove_empty_code_and_one_error_with_empty_string_code_should_remove_error() {
     
    685685
    686686    /**
    687      * @covers ::remove()
     687     * @covers ::remove
    688688     */
    689689    public function test_remove_empty_code_and_one_error_with_empty_string_code_should_remove_error_data() {
     
    698698
    699699    /**
    700      * @covers ::remove()
     700     * @covers ::remove
    701701     */
    702702    public function test_remove_should_remove_the_error_with_the_given_code() {
     
    709709
    710710    /**
    711      * @covers ::remove()
     711     * @covers ::remove
    712712     */
    713713    public function test_remove_should_remove_the_error_data_associated_with_the_given_code() {
Note: See TracChangeset for help on using the changeset viewer.