Make WordPress Core


Ignore:
Timestamp:
02/13/2021 01:47:12 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: Add missing @covers tags for files in phpunit/tests/general/.

Props patopaiar, jrf.
See #39265.

File:
1 edited

Legend:

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

    r50292 r50339  
    66 * @group errors
    77 *
     8 * @covers WP_Error
    89 * @coversDefaultClass WP_Error
    910 */
     
    2627    }
    2728
     29    /**
     30     * @covers ::__construct
     31     */
    2832    public function test_WP_Error_should_be_of_type_WP_Error() {
    2933        $this->assertWPError( $this->wp_error );
    3034    }
    3135
     36    /**
     37     * @covers ::__construct
     38     */
    3239    public function test_WP_Error_with_default_empty_parameters_should_add_no_errors() {
    3340        $this->assertEmpty( $this->wp_error->errors );
    3441    }
    3542
     43    /**
     44     * @covers ::__construct
     45     * @covers ::get_error_code
     46     */
    3647    public function test_WP_Error_with_empty_code_should_add_no_code() {
    3748        $this->assertSame( '', $this->wp_error->get_error_code() );
    3849    }
    3950
     51    /**
     52     * @covers ::__construct
     53     * @covers ::get_error_message
     54     */
    4055    public function test_WP_Error_with_empty_code_should_add_no_message() {
    4156        $this->assertSame( '', $this->wp_error->get_error_message() );
    4257    }
    4358
     59    /**
     60     * @covers ::__construct
     61     */
    4462    public function test_WP_Error_with_empty_code_should_add_no_error_data() {
    4563        $this->assertEmpty( $this->wp_error->error_data );
    4664    }
    4765
     66    /**
     67     * @covers ::__construct
     68     * @covers ::get_error_code
     69     */
    4870    public function test_WP_Error_with_code_and_empty_message_should_add_error_with_that_code() {
    4971        $wp_error = new WP_Error( 'code' );
     
    5274    }
    5375
     76    /**
     77     * @covers ::__construct
     78     * @covers ::get_error_message
     79     */
    5480    public function test_WP_Error_with_code_and_empty_message_should_add_error_with_that_code_and_empty_message() {
    5581        $wp_error = new WP_Error( 'code' );
     
    5884    }
    5985
     86    /**
     87     * @covers ::__construct
     88     * @covers ::get_error_data
     89     */
    6090    public function test_WP_Error_with_code_and_empty_message_and_empty_data_should_add_error_but_not_associated_data() {
    6191        $wp_error = new WP_Error( 'code' );
     
    6494    }
    6595
     96    /**
     97     * @covers ::__construct
     98     * @covers ::get_error_data
     99     */
    66100    public function test_WP_Error_with_code_and_empty_message_and_non_empty_data_should_add_error_with_empty_message_and_that_stored_data() {
    67101        $wp_error = new WP_Error( 'code', '', 'data' );
     
    70104    }
    71105
     106    /**
     107     * @covers ::__construct
     108     * @covers ::get_error_code
     109     */
    72110    public function test_WP_Error_with_code_and_message_should_add_error_with_that_code() {
    73111        $wp_error = new WP_Error( 'code', 'message' );
     
    76114    }
    77115
     116    /**
     117     * @covers ::__construct
     118     * @covers ::get_error_message
     119     */
    78120    public function test_WP_Error_with_code_and_message_should_add_error_with_that_message() {
    79121        $wp_error = new WP_Error( 'code', 'message' );
     
    82124    }
    83125
     126    /**
     127     * @covers ::__construct
     128     * @covers ::get_error_code
     129     */
    84130    public function test_WP_Error_with_code_and_message_and_data_should_add_error_with_that_code() {
    85131        $wp_error = new WP_Error( 'code', 'message', 'data' );
     
    88134    }
    89135
     136    /**
     137     * @covers ::__construct
     138     * @covers ::get_error_message
     139     */
    90140    public function test_WP_Error_with_code_and_message_and_data_should_add_error_with_that_message() {
    91141        $wp_error = new WP_Error( 'code', 'message', 'data' );
     
    94144    }
    95145
     146    /**
     147     * @covers ::__construct
     148     * @covers ::get_error_data
     149     */
    96150    public function test_WP_Error_with_code_and_message_and_data_should_add_error_with_that_data() {
    97151        $wp_error = new WP_Error( 'code', 'message', 'data' );
     
    101155
    102156    /**
     157     * @covers ::__construct
    103158     * @covers ::get_error_codes
    104159     */
     
    108163
    109164    /**
     165     * @covers ::add
    110166     * @covers ::get_error_codes
    111167     */
     
    117173
    118174    /**
     175     * @covers ::add
    119176     * @covers ::get_error_codes
    120177     */
     
    129186
    130187    /**
     188     * @covers ::__construct
    131189     * @covers ::get_error_code
    132190     */
     
    136194
    137195    /**
     196     * @covers ::add
    138197     * @covers ::get_error_code
    139198     */
     
    145204
    146205    /**
     206     * @covers ::add
    147207     * @covers ::get_error_code
    148208     */
     
    155215
    156216    /**
     217     * @covers ::__construct
    157218     * @covers ::get_error_messages
    158219     */
     
    162223
    163224    /**
     225     * @covers ::add
    164226     * @covers ::get_error_messages
    165227     */
     
    171233
    172234    /**
     235     * @covers ::add
    173236     * @covers ::get_error_messages
    174237     */
     
    181244
    182245    /**
     246     * @covers ::__construct
    183247     * @covers ::get_error_messages
    184248     */
     
    188252
    189253    /**
     254     * @covers ::add
    190255     * @covers ::get_error_messages
    191256     */
     
    197262
    198263    /**
     264     * @covers ::add
    199265     * @covers ::get_error_messages
    200266     */
     
    207273
    208274    /**
     275     * @covers ::__construct
    209276     * @covers ::get_error_message
    210277     */
     
    214281
    215282    /**
     283     * @covers ::add
    216284     * @covers ::get_error_message
    217285     */
     
    223291
    224292    /**
     293     * @covers ::add
    225294     * @covers ::get_error_message
    226295     */
     
    233302
    234303    /**
     304     * @covers ::add
    235305     * @covers ::get_error_message
    236306     */
     
    244314
    245315    /**
     316     * @covers ::__construct
    246317     * @covers ::get_error_message
    247318     */
     
    251322
    252323    /**
     324     * @covers ::add
    253325     * @covers ::get_error_message
    254326     */
     
    260332
    261333    /**
     334     * @covers ::add
    262335     * @covers ::get_error_message
    263336     */
     
    270343
    271344    /**
     345     * @covers ::__construct
    272346     * @covers ::get_error_data
    273347     */
     
    277351
    278352    /**
     353     * @covers ::add
    279354     * @covers ::get_error_data
    280355     */
     
    286361
    287362    /**
     363     * @covers ::add
    288364     * @covers ::get_error_data
    289365     */
     
    296372
    297373    /**
     374     * @covers ::add
    298375     * @covers ::get_error_data
    299376     */
     
    306383
    307384    /**
     385     * @covers ::add
    308386     * @covers ::get_error_data
    309387     */
     
    317395
    318396    /**
     397     * @covers ::add
    319398     * @covers ::get_error_data
    320399     */
     
    328407
    329408    /**
     409     * @covers ::__construct
    330410     * @covers ::get_error_data
    331411     */
     
    335415
    336416    /**
     417     * @covers ::add
    337418     * @covers ::get_error_data
    338419     */
     
    344425
    345426    /**
     427     * @covers ::add
    346428     * @covers ::get_error_data
    347429     */
     
    354436
    355437    /**
     438     * @covers ::add
    356439     * @covers ::get_error_data
    357440     */
     
    366449
    367450    /**
     451     * @covers ::add
    368452     * @covers ::get_error_data
    369453     */
     
    377461
    378462    /**
     463     * @covers ::__construct
    379464     * @covers ::get_all_error_data
    380465     */
     
    384469
    385470    /**
     471     * @covers ::add
    386472     * @covers ::get_all_error_data
    387473     */
     
    393479
    394480    /**
     481     * @covers ::add
    395482     * @covers ::get_all_error_data
    396483     */
     
    405492
    406493    /**
     494     * @covers ::add
    407495     * @covers ::get_all_error_data
    408496     */
     
    416504
    417505    /**
     506     * @covers ::add
    418507     * @covers ::get_all_error_data
    419508     */
     
    429518
    430519    /**
     520     * @covers ::__construct
    431521     * @covers ::has_errors
    432522     */
     
    436526
    437527    /**
     528     * @covers ::add
    438529     * @covers ::has_errors
    439530     */
     
    481572    /**
    482573     * @covers ::add
     574     * @covers ::get_error_code
    483575     */
    484576    public function test_add_with_code_empty_message_empty_data_should_add_error_with_code() {
     
    490582    /**
    491583     * @covers ::add
     584     * @covers ::get_error_message
    492585     */
    493586    public function test_add_with_code_empty_message_empty_data_should_add_error_with_empty_message() {
     
    499592    /**
    500593     * @covers ::add
     594     * @covers ::get_error_data
    501595     */
    502596    public function test_add_with_code_empty_message_empty_data_should_not_add_error_data() {
     
    508602    /**
    509603     * @covers ::add
     604     * @covers ::get_error_message
    510605     */
    511606    public function test_add_with_code_and_message_and_empty_data_should_should_add_error_with_that_message() {
     
    517612    /**
    518613     * @covers ::add
     614     * @covers ::get_error_data
    519615     */
    520616    public function test_add_with_code_and_message_and_empty_data_should_not_alter_stored_data() {
     
    526622    /**
    527623     * @covers ::add
     624     * @covers ::get_error_code
    528625     */
    529626    public function test_add_with_code_and_empty_message_and_data_should_add_error_with_that_code() {
     
    535632    /**
    536633     * @covers ::add
     634     * @covers ::get_error_data
    537635     */
    538636    public function test_add_with_code_and_empty_message_and_data_should_store_that_data() {
     
    544642    /**
    545643     * @covers ::add
     644     * @covers ::get_error_code
    546645     */
    547646    public function test_add_with_code_and_message_and_data_should_add_an_error_with_that_code() {
     
    553652    /**
    554653     * @covers ::add
     654     * @covers ::get_error_message
    555655     */
    556656    public function test_add_with_code_and_message_and_data_should_add_an_error_with_that_message() {
     
    562662    /**
    563663     * @covers ::add
     664     * @covers ::get_error_data
    564665     */
    565666    public function test_add_with_code_and_message_and_data_should_store_that_data() {
     
    571672    /**
    572673     * @covers ::add
     674     * @covers ::get_error_messages
    573675     */
    574676    public function test_add_multiple_times_with_the_same_code_should_add_additional_messages_for_that_code() {
     
    583685    /**
    584686     * @covers ::add
     687     * @covers ::get_error_data
    585688     */
    586689    public function test_add_multiple_times_with_the_same_code_and_different_data_should_store_only_the_last_added_data() {
     
    611714    /**
    612715     * @covers ::add_data
     716     * @covers ::get_error_data
    613717     */
    614718    public function test_add_data_with_data_empty_code_and_one_error_should_store_the_data_under_that_code() {
     
    621725    /**
    622726     * @covers ::add_data
     727     * @covers ::get_error_data
    623728     */
    624729    public function test_add_data_with_data_empty_code_and_multiple_errors_with_different_codes_should_store_it_under_the_first_code() {
     
    633738    /**
    634739     * @covers ::add_data
     740     * @covers ::get_error_data
    635741     */
    636742    public function test_add_data_with_data_empty_code_and_multiple_errors_with_same_code_should_store_it_under_the_first_code() {
     
    686792    /**
    687793     * @covers ::add_data
     794     * @covers ::get_error_data
    688795     */
    689796    public function test_add_data_with_data_and_code_should_add_data() {
     
    762869    /**
    763870     * @covers ::remove
     871     * @covers ::get_error_data
     872     * @covers ::get_all_error_data
    764873     */
    765874    public function test_remove_should_remove_the_error_data_associated_with_the_given_code() {
     
    775884
    776885    /**
    777      * @covers ::merge_from()
     886     * @covers ::merge_from
     887     * @covers ::get_error_messages
     888     * @covers ::get_error_data
     889     * @covers ::get_all_error_data
     890     * @covers ::get_error_message
    778891     */
    779892    public function test_merge_from_should_copy_other_error_into_instance() {
     
    791904
    792905    /**
    793      * @covers ::merge_from()
     906     * @covers ::merge_from
     907     * @covers ::has_errors
    794908     */
    795909    public function test_merge_from_with_no_errors_should_not_add_to_instance() {
     
    802916
    803917    /**
    804      * @covers ::export_to()
     918     * @covers ::export_to
     919     * @covers ::get_error_messages
     920     * @covers ::get_error_data
     921     * @covers ::get_all_error_data
     922     * @covers ::get_error_message
    805923     */
    806924    public function test_export_to_should_copy_instance_into_other_error() {
     
    820938
    821939    /**
    822      * @covers ::export_to()
     940     * @covers ::export_to
     941     * @covers ::has_errors
    823942     */
    824943    public function test_export_to_with_no_errors_should_not_add_to_other_error() {
Note: See TracChangeset for help on using the changeset viewer.