Make WordPress Core


Ignore:
Timestamp:
10/17/2015 06:02:16 PM (9 years ago)
Author:
wonderboymusic
Message:

Unit Tests: after [35225], make factory a method/getter on WP_UnitTestCase and add magic methods for BC for every plugin that is extending WP_UnitTestCase and accessing the $factory instance prop.

Props nerrad, wonderboymusic.
See #30017, #33968.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/customize/widgets.php

    r35236 r35242  
    3939        remove_action( 'after_setup_theme', 'twentyfifteen_setup' ); // @todo We should not be including a theme anyway
    4040
    41         $user_id = self::$factory->user->create( array( 'role' => 'administrator' ) );
     41        $user_id = self::factory()->user->create( array( 'role' => 'administrator' ) );
    4242        wp_set_current_user( $user_id );
    4343
Note: See TracChangeset for help on using the changeset viewer.