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/option/networkOption.php

    r35225 r35242  
    1212class Tests_Option_NetworkOption extends WP_UnitTestCase {
    1313    function test_add_network_option_not_available_on_other_network() {
    14         $id = self::$factory->network->create();
     14        $id = self::factory()->network->create();
    1515        $option = rand_str();
    1616        $value = rand_str();
     
    2121
    2222    function test_add_network_option_available_on_same_network() {
    23         $id = self::$factory->network->create();
     23        $id = self::factory()->network->create();
    2424        $option = rand_str();
    2525        $value = rand_str();
     
    3030
    3131    function test_delete_network_option_on_only_one_network() {
    32         $id = self::$factory->network->create();
     32        $id = self::factory()->network->create();
    3333        $option = rand_str();
    3434        $value = rand_str();
Note: See TracChangeset for help on using the changeset viewer.