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/includes/testcase-ajax.php

    r35225 r35242  
    7676
    7777        // Make some posts
    78         self::$factory->post->create_many( 5 );
     78        self::factory()->post->create_many( 5 );
    7979    }
    8080
     
    149149    protected function _setRole( $role ) {
    150150        $post = $_POST;
    151         $user_id = self::$factory->user->create( array( 'role' => $role ) );
     151        $user_id = self::factory()->user->create( array( 'role' => $role ) );
    152152        wp_set_current_user( $user_id );
    153153        $_POST = array_merge($_POST, $post);
Note: See TracChangeset for help on using the changeset viewer.