Make WordPress Core


Ignore:
Timestamp:
11/04/2021 03:22:47 PM (3 years ago)
Author:
hellofromTonya
Message:

Coding Standards: Add visibility to methods in tests/phpunit/tests/.

Adds a public visibility to test fixtures, tests, data providers, and callbacks methods.

Adds a private visibility to helper methods within test classes.

Renames callbacks and helpers that previously started with a _ prefix. Why? For consistency and to leverage using the method visibility. Further naming standardizations is beyond the scope of this commit.

Props costdev, jrf, hellofromTonya.
Fixes #54177.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/http/wpRemoteRetrieveHeaders.php

    r50345 r52010  
    1010     * Valid response
    1111     */
    12     function test_remote_retrieve_headers_valid_response() {
     12    public function test_remote_retrieve_headers_valid_response() {
    1313        $headers  = 'headers_data';
    1414        $response = array( 'headers' => $headers );
     
    2121     * Response is a WP_Error
    2222     */
    23     function test_remote_retrieve_headers_is_error() {
     23    public function test_remote_retrieve_headers_is_error() {
    2424        $response = new WP_Error( 'Some error' );
    2525
     
    3131     * Response does not contain 'headers'
    3232     */
    33     function test_remote_retrieve_headers_invalid_response() {
     33    public function test_remote_retrieve_headers_invalid_response() {
    3434        $response = array( 'no_headers' => 'set' );
    3535
Note: See TracChangeset for help on using the changeset viewer.