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/post/slashes.php

    r35225 r35242  
    99        function setUp() {
    1010                parent::setUp();
    11                 $this->author_id = self::$factory->user->create( array( 'role' => 'editor' ) );
     11                $this->author_id = self::factory()->user->create( array( 'role' => 'editor' ) );
    1212                $this->old_current_user = get_current_user_id();
    1313                wp_set_current_user( $this->author_id );
     
    3434         */
    3535        function test_edit_post() {
    36                 $id = self::$factory->post->create();
     36                $id = self::factory()->post->create();
    3737
    3838                $_POST = array();
     
    103103         */
    104104        function test_wp_update_post() {
    105                 $id = self::$factory->post->create();
     105                $id = self::factory()->post->create();
    106106
    107107                wp_update_post(array(
Note: See TracChangeset for help on using the changeset viewer.