Make WordPress Core


Ignore:
Timestamp:
09/12/2013 02:47:58 PM (12 years ago)
Author:
wonderboymusic
Message:

There was way too much duplicated code in my notice cleanup, it built up over time, and there's definitely a need to standardize.

  • Remove duplicated code for deprecated function notice suppression
  • Add support in WP_UnitTestCase setUp/tearDown methods for $deprecated_functions fixture if the extending class has added it
  • Add a $deprecated_functions fixture to each extending class that needs it

To use this fixture, add something to your Test Case class like so:
protected $deprecated_functions = array( 'get_theme', 'get_themes', 'get_theme_data', 'get_current_theme' );

See #25282.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/image/size.php

    r25367 r25402  
    77 */
    88class Tests_Image_Size extends WP_UnitTestCase {
    9     function setUp() {
    10         parent::setUp();
    11 
    12         add_action( 'deprecated_function_run', array( $this, 'deprecated_function_run_check' ) );
    13     }
    14 
    15     function tearDown() {
    16         parent::tearDown();
    17 
    18         remove_action( 'deprecated_function_run', array( $this, 'deprecated_function_run_check' ) );
    19     }
    20 
    21     function deprecated_function_run_check( $function ) {
    22         if ( in_array( $function, array( 'wp_shrink_dimensions' ) ) )
    23             add_filter( 'deprecated_function_trigger_error', array( $this, 'filter_deprecated_function_trigger_error' ) );
    24     }
    25 
    26     function filter_deprecated_function_trigger_error() {
    27         remove_filter( 'deprecated_function_trigger_error', array( $this, 'filter_deprecated_function_trigger_error' ) );
    28         return false;
    29     }
    30 
     9    protected $deprecated_functions = array( 'wp_shrink_dimensions' );
     10   
    3111    function test_constrain_dims_zero() {
    3212        if (!is_callable('wp_constrain_dimensions'))
Note: See TracChangeset for help on using the changeset viewer.