Make WordPress Core


Ignore:
Timestamp:
11/15/2020 01:59:32 PM (4 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Standardise the name, signature, and usage of the wpSetUpBeforeClass() method that's used in test classes.

This brings consistency to this often-used method, and allows IDEs to provide help to developers when using its $factory parameter.

See #51344

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/post/wpGetPostParentId.php

    r49327 r49603  
    1919    public static $post_id;
    2020
    21     public static function wpSetUpBeforeClass() {
    22         self::$parent_post_id = self::factory()->post->create();
    23         self::$post_id        = self::factory()->post->create( array( 'post_parent' => self::$parent_post_id ) );
     21    public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
     22        self::$parent_post_id = $factory->post->create();
     23        self::$post_id        = $factory->post->create( array( 'post_parent' => self::$parent_post_id ) );
    2424    }
    2525
Note: See TracChangeset for help on using the changeset viewer.