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/category/getCategoryParents.php

    r35225 r35242  
    1111        parent::setUp();
    1212
    13         $this->c1 = self::$factory->category->create_and_get();
    14         $this->c2 = self::$factory->category->create_and_get( array(
     13        $this->c1 = self::factory()->category->create_and_get();
     14        $this->c2 = self::factory()->category->create_and_get( array(
    1515            'parent' => $this->c1->term_id,
    1616        ) );
     
    5252
    5353    public function test_visited() {
    54         $c3 = self::$factory->category->create_and_get( array(
     54        $c3 = self::factory()->category->create_and_get( array(
    5555            'parent' => $this->c2->term_id,
    5656        ) );
    57         $c4 = self::$factory->category->create_and_get( array(
     57        $c4 = self::factory()->category->create_and_get( array(
    5858            'parent' => $c3->term_id,
    5959        ) );
Note: See TracChangeset for help on using the changeset viewer.