Make WordPress Core


Ignore:
Timestamp:
10/17/2015 06:02:16 PM (11 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/ajax/Autosave.php

    r35225 r35242  
    3434                parent::setUp();
    3535                // Set a user so the $post has 'post_author'
    36                 $this->user_id = self::$factory->user->create( array( 'role' => 'administrator' ) );
     36                $this->user_id = self::factory()->user->create( array( 'role' => 'administrator' ) );
    3737                wp_set_current_user( $this->user_id );
    3838
    39                 $post_id = self::$factory->post->create( array( 'post_status' => 'draft' ) );
     39                $post_id = self::factory()->post->create( array( 'post_status' => 'draft' ) );
    4040                $this->_post = get_post( $post_id );
    4141        }
     
    9898        public function test_autosave_locked_post() {
    9999                // Lock the post to another user
    100                 $another_user_id = self::$factory->user->create( array( 'role' => 'editor' ) );
     100                $another_user_id = self::factory()->user->create( array( 'role' => 'editor' ) );
    101101                wp_set_current_user( $another_user_id );
    102102                wp_set_post_lock( $this->_post->ID );
Note: See TracChangeset for help on using the changeset viewer.