Make WordPress Core

Changeset 54058


Ignore:
Timestamp:
09/01/2022 10:54:19 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Tests: Explicitly mark empty REST API tests as not performing any assertions.

WordPress core test suite uses PHPUnit's beStrictAboutTestsThatDoNotTestAnything option set to true, which marks a test as risky when no assertions are performed.

REST API test classes have some empty tests for non-implemented methods because these test classes extend the abstract WP_Test_REST_Controller_Testcase class, which requires several methods to be implemented that don't necessarily make sense for all REST API routes.

As these tests are intentionally empty, they were previously marked as skipped, so that they are not reported as risky.

This commit aims to further reduce noise in the test suite and effectively ignores these empty tests altogether, which seems like a more appropriate option at this time.

The @doesNotPerformAssertions annotation can be reconsidered in the future when the tests are either removed as unnecessary or updated to actually perform assertions related to their behavior.

Follow-up to [40534], [41176], [41228], [53921].

See #40538, #41463, #55652.

Location:
trunk/tests/phpunit/tests/rest-api
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-autosaves-controller.php

    r53948 r54058  
    272272    }
    273273
     274    /**
     275     * @doesNotPerformAssertions
     276     */
    274277    public function test_delete_item() {
    275         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     278        // Controller does not implement delete_item().
    276279    }
    277280
  • trunk/tests/phpunit/tests/rest-api/rest-block-directory-controller.php

    r53921 r54058  
    131131    }
    132132
     133    /**
     134     * @doesNotPerformAssertions
     135     */
    133136    public function test_get_item() {
    134         $this->markTestSkipped( 'Controller does not implement get_item().' );
    135     }
    136 
     137        // Controller does not implement get_item().
     138    }
     139
     140    /**
     141     * @doesNotPerformAssertions
     142     */
    137143    public function test_create_item() {
    138         $this->markTestSkipped( 'Controller does not implement create_item().' );
    139     }
    140 
     144        // Controller does not implement create_item().
     145    }
     146
     147    /**
     148     * @doesNotPerformAssertions
     149     */
    141150    public function test_update_item() {
    142         $this->markTestSkipped( 'Controller does not implement update_item().' );
    143     }
    144 
     151        // Controller does not implement update_item().
     152    }
     153
     154    /**
     155     * @doesNotPerformAssertions
     156     */
    145157    public function test_delete_item() {
    146         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     158        // Controller does not implement delete_item().
    147159    }
    148160
  • trunk/tests/phpunit/tests/rest-api/rest-block-renderer-controller.php

    r53921 r54058  
    615615    /**
    616616     * The update_item() method does not exist for block rendering.
     617     *
     618     * @doesNotPerformAssertions
    617619     */
    618620    public function test_update_item() {
    619         $this->markTestSkipped( 'Controller does not implement update_item().' );
     621        // Controller does not implement update_item().
    620622    }
    621623
    622624    /**
    623625     * The create_item() method does not exist for block rendering.
     626     *
     627     * @doesNotPerformAssertions
    624628     */
    625629    public function test_create_item() {
    626         $this->markTestSkipped( 'Controller does not implement create_item().' );
     630        // Controller does not implement create_item().
    627631    }
    628632
    629633    /**
    630634     * The delete_item() method does not exist for block rendering.
     635     *
     636     * @doesNotPerformAssertions
    631637     */
    632638    public function test_delete_item() {
    633         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     639        // Controller does not implement delete_item().
    634640    }
    635641
    636642    /**
    637643     * The get_items() method does not exist for block rendering.
     644     *
     645     * @doesNotPerformAssertions
    638646     */
    639647    public function test_get_items() {
    640         $this->markTestSkipped( 'Controller does not implement get_items().' );
     648        // Controller does not implement get_items().
    641649    }
    642650
    643651    /**
    644652     * The get_context_param() method is not used for block rendering.
     653     *
     654     * @doesNotPerformAssertions
    645655     */
    646656    public function test_context_param() {
    647         $this->markTestSkipped( 'Controller does not use get_context_param().' );
     657        // Controller does not use get_context_param().
    648658    }
    649659
    650660    /**
    651661     * The prepare_item() method does not exist for block rendering.
     662     *
     663     * @doesNotPerformAssertions
    652664     */
    653665    public function test_prepare_item() {
    654         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     666        // Controller does not implement prepare_item().
    655667    }
    656668}
  • trunk/tests/phpunit/tests/rest-api/rest-block-type-controller.php

    r53921 r54058  
    553553    /**
    554554     * The create_item() method does not exist for block types.
     555     *
     556     * @doesNotPerformAssertions
    555557     */
    556558    public function test_create_item() {
    557         $this->markTestSkipped( 'Controller does not implement create_item().' );
     559        // Controller does not implement create_item().
    558560    }
    559561
    560562    /**
    561563     * The update_item() method does not exist for block types.
     564     *
     565     * @doesNotPerformAssertions
    562566     */
    563567    public function test_update_item() {
    564         $this->markTestSkipped( 'Controller does not implement create_item().' );
     568        // Controller does not implement create_item().
    565569    }
    566570
    567571    /**
    568572     * The delete_item() method does not exist for block types.
     573     *
     574     * @doesNotPerformAssertions
    569575     */
    570576    public function test_delete_item() {
    571         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     577        // Controller does not implement delete_item().
    572578    }
    573579}
  • trunk/tests/phpunit/tests/rest-api/rest-global-styles-controller.php

    r54036 r54058  
    125125    }
    126126
     127    /**
     128     * @doesNotPerformAssertions
     129     */
    127130    public function test_context_param() {
    128         $this->markTestSkipped( 'Controller does not use get_context_param().' );
    129     }
    130 
     131        // Controller does not use get_context_param().
     132    }
     133
     134    /**
     135     * @doesNotPerformAssertions
     136     */
    131137    public function test_get_items() {
    132         $this->markTestSkipped( 'Controller does not implement get_items().' );
     138        // Controller does not implement get_items().
    133139    }
    134140
     
    383389    }
    384390
     391    /**
     392     * @doesNotPerformAssertions
     393     */
    385394    public function test_create_item() {
    386         $this->markTestSkipped( 'Controller does not implement create_item().' );
     395        // Controller does not implement create_item().
    387396    }
    388397
     
    438447    }
    439448
     449    /**
     450     * @doesNotPerformAssertions
     451     */
    440452    public function test_delete_item() {
    441         $this->markTestSkipped( 'Controller does not implement delete_item().' );
    442     }
    443 
     453        // Controller does not implement delete_item().
     454    }
     455
     456    /**
     457     * @doesNotPerformAssertions
     458     */
    444459    public function test_prepare_item() {
    445         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     460        // Controller does not implement prepare_item().
    446461    }
    447462
  • trunk/tests/phpunit/tests/rest-api/rest-pages-controller.php

    r53945 r54058  
    409409    }
    410410
     411    /**
     412     * @doesNotPerformAssertions
     413     */
    411414    public function test_get_item() {
    412         $this->markTestSkipped( 'Controller does not implement get_item().' );
     415        // Controller does not implement get_item().
    413416    }
    414417
     
    420423    }
    421424
     425    /**
     426     * @doesNotPerformAssertions
     427     */
    422428    public function test_create_item() {
    423         $this->markTestSkipped( 'Controller does not implement create_item().' );
     429        // Controller does not implement create_item().
    424430    }
    425431
     
    485491    }
    486492
     493    /**
     494     * @doesNotPerformAssertions
     495     */
    487496    public function test_update_item() {
    488         $this->markTestSkipped( 'Controller does not implement update_item().' );
     497        // Controller does not implement update_item().
    489498    }
    490499
     
    508517    }
    509518
     519    /**
     520     * @doesNotPerformAssertions
     521     */
    510522    public function test_prepare_item() {
    511         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     523        // Controller does not implement prepare_item().
    512524    }
    513525
  • trunk/tests/phpunit/tests/rest-api/rest-pattern-directory-controller.php

    r53921 r54058  
    311311    }
    312312
     313    /**
     314     * @doesNotPerformAssertions
     315     */
    313316    public function test_get_item() {
    314         $this->markTestSkipped( 'Controller does not implement get_item().' );
    315     }
    316 
     317        // Controller does not implement get_item().
     318    }
     319
     320    /**
     321     * @doesNotPerformAssertions
     322     */
    317323    public function test_create_item() {
    318         $this->markTestSkipped( 'Controller does not implement create_item().' );
    319     }
    320 
     324        // Controller does not implement create_item().
     325    }
     326
     327    /**
     328     * @doesNotPerformAssertions
     329     */
    321330    public function test_update_item() {
    322         $this->markTestSkipped( 'Controller does not implement update_item().' );
    323     }
    324 
     331        // Controller does not implement update_item().
     332    }
     333
     334    /**
     335     * @doesNotPerformAssertions
     336     */
    325337    public function test_delete_item() {
    326         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     338        // Controller does not implement delete_item().
    327339    }
    328340
     
    403415     *
    404416     * @since 5.8.0
     417     *
     418     * @doesNotPerformAssertions
    405419     */
    406420    public function test_get_item_schema() {
    407         $this->markTestSkipped( "The controller's schema is hardcoded, so tests would not be meaningful." );
     421        // The controller's schema is hardcoded, so tests would not be meaningful.
    408422    }
    409423
  • trunk/tests/phpunit/tests/rest-api/rest-settings-controller.php

    r53948 r54058  
    7676    }
    7777
     78    /**
     79     * @doesNotPerformAssertions
     80     */
    7881    public function test_context_param() {
    79         $this->markTestSkipped( 'Controller does not use get_context_param().' );
     82        // Controller does not use get_context_param().
    8083    }
    8184
     
    384387    }
    385388
    386 
     389    /**
     390     * @doesNotPerformAssertions
     391     */
    387392    public function test_create_item() {
    388         $this->markTestSkipped( 'Controller does not implement create_item().' );
     393        // Controller does not implement create_item().
    389394    }
    390395
     
    666671    }
    667672
     673    /**
     674     * @doesNotPerformAssertions
     675     */
    668676    public function test_prepare_item() {
    669         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
    670     }
    671 
     677        // Controller does not implement prepare_item().
     678    }
     679
     680    /**
     681     * @doesNotPerformAssertions
     682     */
    672683    public function test_get_item_schema() {
    673         $this->markTestSkipped( 'Controller does not implement get_item_schema().' );
     684        // Controller does not implement get_item_schema().
    674685    }
    675686
  • trunk/tests/phpunit/tests/rest-api/rest-sidebars-controller.php

    r53921 r54058  
    575575    /**
    576576     * The create_item() method does not exist for sidebar.
     577     *
     578     * @doesNotPerformAssertions
    577579     */
    578580    public function test_create_item() {
    579         $this->markTestSkipped( 'Controller does not implement create_item().' );
     581        // Controller does not implement create_item().
    580582    }
    581583
     
    893895    /**
    894896     * The delete_item() method does not exist for sidebar.
     897     *
     898     * @doesNotPerformAssertions
    895899     */
    896900    public function test_delete_item() {
    897         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     901        // Controller does not implement delete_item().
    898902    }
    899903
    900904    /**
    901905     * The prepare_item() method does not exist for sidebar.
     906     *
     907     * @doesNotPerformAssertions
    902908     */
    903909    public function test_prepare_item() {
    904         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     910        // Controller does not implement prepare_item().
    905911    }
    906912
  • trunk/tests/phpunit/tests/rest-api/rest-themes-controller.php

    r53921 r54058  
    12011201    /**
    12021202     * The create_item() method does not exist for themes.
     1203     *
     1204     * @doesNotPerformAssertions
    12031205     */
    12041206    public function test_create_item() {
    1205         $this->markTestSkipped( 'Controller does not implement create_item().' );
     1207        // Controller does not implement create_item().
    12061208    }
    12071209
    12081210    /**
    12091211     * The update_item() method does not exist for themes.
     1212     *
     1213     * @doesNotPerformAssertions
    12101214     */
    12111215    public function test_update_item() {
    1212         $this->markTestSkipped( 'Controller does not implement update_item().' );
     1216        // Controller does not implement update_item().
    12131217    }
    12141218
     
    13991403    /**
    14001404     * The delete_item() method does not exist for themes.
     1405     *
     1406     * @doesNotPerformAssertions
    14011407     */
    14021408    public function test_delete_item() {
    1403         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     1409        // Controller does not implement delete_item().
    14041410    }
    14051411
    14061412    /**
    14071413     * Context is not supported for themes.
     1414     *
     1415     * @doesNotPerformAssertions
    14081416     */
    14091417    public function test_context_param() {
    1410         $this->markTestSkipped( 'Controller does not use get_context_param().' );
     1418        // Controller does not use get_context_param().
    14111419    }
    14121420}
  • trunk/tests/phpunit/tests/rest-api/rest-widget-types-controller.php

    r53921 r54058  
    533533    /**
    534534     * The create_item() method does not exist for widget types.
     535     *
     536     * @doesNotPerformAssertions
    535537     */
    536538    public function test_create_item() {
    537         $this->markTestSkipped( 'Controller does not implement create_item().' );
     539        // Controller does not implement create_item().
    538540    }
    539541
    540542    /**
    541543     * The update_item() method does not exist for widget types.
     544     *
     545     * @doesNotPerformAssertions
    542546     */
    543547    public function test_update_item() {
    544         $this->markTestSkipped( 'Controller does not implement update_item().' );
     548        // Controller does not implement update_item().
    545549    }
    546550
    547551    /**
    548552     * The delete_item() method does not exist for widget types.
     553     *
     554     * @doesNotPerformAssertions
    549555     */
    550556    public function test_delete_item() {
    551         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     557        // Controller does not implement delete_item().
    552558    }
    553559}
  • trunk/tests/phpunit/tests/rest-api/rest-widgets-controller.php

    r53921 r54058  
    215215
    216216    /**
    217      * @ticket 41683
     217     * @doesNotPerformAssertions
    218218     */
    219219    public function test_context_param() {
    220         $this->markTestSkipped( 'Controller does not use get_context_param().' );
     220        // Controller does not use get_context_param().
    221221    }
    222222
     
    15111511    /**
    15121512     * The prepare_item() method does not exist for sidebar.
     1513     *
     1514     * @doesNotPerformAssertions
    15131515     */
    15141516    public function test_prepare_item() {
    1515         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     1517        // Controller does not implement prepare_item().
    15161518    }
    15171519
  • trunk/tests/phpunit/tests/rest-api/wpRestBlockPatternCategoriesController.php

    r53921 r54058  
    146146    }
    147147
     148    /**
     149     * @doesNotPerformAssertions
     150     */
    148151    public function test_context_param() {
    149         $this->markTestSkipped( 'Controller does not use get_context_param().' );
     152        // Controller does not use get_context_param().
    150153    }
    151154
     155    /**
     156     * @doesNotPerformAssertions
     157     */
    152158    public function test_get_item() {
    153         $this->markTestSkipped( 'Controller does not implement get_item().' );
     159        // Controller does not implement get_item().
    154160    }
    155161
     162    /**
     163     * @doesNotPerformAssertions
     164     */
    156165    public function test_create_item() {
    157         $this->markTestSkipped( 'Controller does not implement create_item().' );
     166        // Controller does not implement create_item().
    158167    }
    159168
     169    /**
     170     * @doesNotPerformAssertions
     171     */
    160172    public function test_update_item() {
    161         $this->markTestSkipped( 'Controller does not implement update_item().' );
     173        // Controller does not implement update_item().
    162174    }
    163175
     176    /**
     177     * @doesNotPerformAssertions
     178     */
    164179    public function test_delete_item() {
    165         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     180        // Controller does not implement delete_item().
    166181    }
    167182
     183    /**
     184     * @doesNotPerformAssertions
     185     */
    168186    public function test_prepare_item() {
    169         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     187        // Controller does not implement prepare_item().
    170188    }
    171189
     190    /**
     191     * @doesNotPerformAssertions
     192     */
    172193    public function test_get_item_schema() {
    173         $this->markTestSkipped( 'Controller does not implement get_item_schema().' );
     194        // Controller does not implement get_item_schema().
    174195    }
    175196}
  • trunk/tests/phpunit/tests/rest-api/wpRestBlockPatternsController.php

    r53921 r54058  
    172172    }
    173173
     174    /**
     175     * @doesNotPerformAssertions
     176     */
    174177    public function test_context_param() {
    175         $this->markTestSkipped( 'Controller does not use get_context_param().' );
    176     }
    177 
     178        // Controller does not use get_context_param().
     179    }
     180
     181    /**
     182     * @doesNotPerformAssertions
     183     */
    178184    public function test_get_item() {
    179         $this->markTestSkipped( 'Controller does not implement get_item().' );
    180     }
    181 
     185        // Controller does not implement get_item().
     186    }
     187
     188    /**
     189     * @doesNotPerformAssertions
     190     */
    182191    public function test_create_item() {
    183         $this->markTestSkipped( 'Controller does not implement create_item().' );
    184     }
    185 
     192        // Controller does not implement create_item().
     193    }
     194
     195    /**
     196     * @doesNotPerformAssertions
     197     */
    186198    public function test_update_item() {
    187         $this->markTestSkipped( 'Controller does not implement update_item().' );
    188     }
    189 
     199        // Controller does not implement update_item().
     200    }
     201
     202    /**
     203     * @doesNotPerformAssertions
     204     */
    190205    public function test_delete_item() {
    191         $this->markTestSkipped( 'Controller does not implement delete_item().' );
    192     }
    193 
     206        // Controller does not implement delete_item().
     207    }
     208
     209    /**
     210     * @doesNotPerformAssertions
     211     */
    194212    public function test_prepare_item() {
    195         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
    196     }
    197 
     213        // Controller does not implement prepare_item().
     214    }
     215
     216    /**
     217     * @doesNotPerformAssertions
     218     */
    198219    public function test_get_item_schema() {
    199         $this->markTestSkipped( 'Controller does not implement get_item_schema().' );
     220        // Controller does not implement get_item_schema().
    200221    }
    201222}
  • trunk/tests/phpunit/tests/rest-api/wpRestEditSiteExportController.php

    r53921 r54058  
    100100
    101101    /**
    102      * @ticket 54448
     102     * @doesNotPerformAssertions
    103103     */
    104104    public function test_context_param() {
    105         $this->markTestSkipped( 'Controller does not use get_context_param().' );
     105        // Controller does not use get_context_param().
    106106    }
    107107
    108108    /**
    109      * @ticket 54448
     109     * @doesNotPerformAssertions
    110110     */
    111111    public function test_get_item() {
    112         $this->markTestSkipped( 'Controller does not implement get_item().' );
     112        // Controller does not implement get_item().
    113113    }
    114114
    115115    /**
    116      * @ticket 54448
     116     * @doesNotPerformAssertions
    117117     */
    118118    public function test_get_items() {
    119         $this->markTestSkipped( 'Controller does not implement get_items().' );
     119        // Controller does not implement get_items().
    120120    }
    121121
    122122    /**
    123      * @ticket 54448
     123     * @doesNotPerformAssertions
    124124     */
    125125    public function test_create_item() {
    126         $this->markTestSkipped( 'Controller does not implement create_item().' );
     126        // Controller does not implement create_item().
    127127    }
    128128
    129129    /**
    130      * @ticket 54448
     130     * @doesNotPerformAssertions
    131131     */
    132132    public function test_update_item() {
    133         $this->markTestSkipped( 'Controller does not implement update_item().' );
     133        // Controller does not implement update_item().
    134134    }
    135135
    136136    /**
    137      * @ticket 54448
     137     * @doesNotPerformAssertions
    138138     */
    139139    public function test_delete_item() {
    140         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     140        // Controller does not implement delete_item().
    141141    }
    142142
    143143    /**
    144      * @ticket 54448
     144     * @doesNotPerformAssertions
    145145     */
    146146    public function test_prepare_item() {
    147         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     147        // Controller does not implement prepare_item().
    148148    }
    149149
    150150    /**
    151      * @ticket 54448
     151     * @doesNotPerformAssertions
    152152     */
    153153    public function test_get_item_schema() {
    154         $this->markTestSkipped( 'Controller does not implement get_item_schema().' );
     154        // Controller does not implement get_item_schema().
    155155    }
    156156}
  • trunk/tests/phpunit/tests/rest-api/wpRestMenuLocationsController.php

    r53921 r54058  
    142142    /**
    143143     * The create_item() method does not exist for menu locations.
     144     *
     145     * @doesNotPerformAssertions
    144146     */
    145147    public function test_create_item() {
    146         $this->markTestSkipped( 'Controller does not implement create_item().' );
     148        // Controller does not implement create_item().
    147149    }
    148150
    149151    /**
    150152     * The update_item() method does not exist for menu locations.
     153     *
     154     * @doesNotPerformAssertions
    151155     */
    152156    public function test_update_item() {
    153         $this->markTestSkipped( 'Controller does not implement update_item().' );
     157        // Controller does not implement update_item().
    154158    }
    155159
    156160    /**
    157161     * The delete_item() method does not exist for menu locations.
     162     *
     163     * @doesNotPerformAssertions
    158164     */
    159165    public function test_delete_item() {
    160         $this->markTestSkipped( 'Controller does not implement delete_item().' );
     166        // Controller does not implement delete_item().
    161167    }
    162168
    163169    /**
    164170     * The prepare_item() method does not exist for menu locations.
     171     *
     172     * @doesNotPerformAssertions
    165173     */
    166174    public function test_prepare_item() {
    167         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     175        // Controller does not implement prepare_item().
    168176    }
    169177
  • trunk/tests/phpunit/tests/rest-api/wpRestTemplatesController.php

    r53921 r54058  
    615615    }
    616616
     617    /**
     618     * @doesNotPerformAssertions
     619     */
    617620    public function test_prepare_item() {
    618         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     621        // Controller does not implement prepare_item().
    619622    }
    620623
  • trunk/tests/phpunit/tests/rest-api/wpRestUrlDetailsController.php

    r54056 r54058  
    10491049    }
    10501050
     1051    /**
     1052     * @doesNotPerformAssertions
     1053     */
    10511054    public function test_context_param() {
    1052         $this->markTestSkipped( 'Controller does not use get_context_param().' );
    1053     }
    1054 
     1055        // Controller does not use get_context_param().
     1056    }
     1057
     1058    /**
     1059     * @doesNotPerformAssertions
     1060     */
    10551061    public function test_get_item() {
    1056         $this->markTestSkipped( 'Controller does not implement get_item().' );
    1057     }
    1058 
     1062        // Controller does not implement get_item().
     1063    }
     1064
     1065    /**
     1066     * @doesNotPerformAssertions
     1067     */
    10591068    public function test_create_item() {
    1060         $this->markTestSkipped( 'Controller does not implement create_item().' );
    1061     }
    1062 
     1069        // Controller does not implement create_item().
     1070    }
     1071
     1072    /**
     1073     * @doesNotPerformAssertions
     1074     */
    10631075    public function test_update_item() {
    1064         $this->markTestSkipped( 'Controller does not implement update_item().' );
    1065     }
    1066 
     1076        // Controller does not implement update_item().
     1077    }
     1078
     1079    /**
     1080     * @doesNotPerformAssertions
     1081     */
    10671082    public function test_delete_item() {
    1068         $this->markTestSkipped( 'Controller does not implement delete_item().' );
    1069     }
    1070 
     1083        // Controller does not implement delete_item().
     1084    }
     1085
     1086    /**
     1087     * @doesNotPerformAssertions
     1088     */
    10711089    public function test_prepare_item() {
    1072         $this->markTestSkipped( 'Controller does not implement prepare_item().' );
     1090        // Controller does not implement prepare_item().
    10731091    }
    10741092
Note: See TracChangeset for help on using the changeset viewer.