Make WordPress Core


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

    r35225 r35242  
    1313        }
    1414
    15         $post = self::$factory->post->create_and_get( array(
     15        $post = self::factory()->post->create_and_get( array(
    1616            'post_title'  => 'Hello World',
    1717        ) );
     
    4747        }
    4848
    49         $post = self::$factory->post->create_and_get( array(
     49        $post = self::factory()->post->create_and_get( array(
    5050            'post_title'  => 'Hello World',
    5151        ) );
Note: See TracChangeset for help on using the changeset viewer.