Make WordPress Core


Ignore:
Timestamp:
10/16/2015 09:04:12 PM (9 years ago)
Author:
wonderboymusic
Message:

Unit Tests: one $factory to rule them all, and it shall be static.

Using more than one instance of WP_UnitTest_Factory causes all kinds of craziness, due to out-of-sync internal generator sequences. Since we want to use setUpBeforeClass, we were creating ad hoc instances. To avoid that, we were injecting one static instance via Dependency Injection in wpSetUpBeforeClass. All tests should really use the static instance, so we will remove the instance prop $factory.

Replace $this->factory with self::$factory over 2000 times.
Rewrite all of the tests that were hard-coding dynamic values.

#YOLOFriday

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/category/getCategoryParents.php

    r31299 r35225  
    1111        parent::setUp();
    1212
    13         $this->c1 = $this->factory->category->create_and_get();
    14         $this->c2 = $this->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 = $this->factory->category->create_and_get( array(
     54        $c3 = self::$factory->category->create_and_get( array(
    5555            'parent' => $this->c2->term_id,
    5656        ) );
    57         $c4 = $this->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.