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/comment/getCommentCount.php

    r35225 r35242  
    1515
    1616    public function test_get_comment_count_approved() {
    17         self::$factory->comment->create( array(
     17        self::factory()->comment->create( array(
    1818            'comment_approved' => 1
    1919        ) );
     
    3030
    3131    public function test_get_comment_count_awaiting() {
    32         self::$factory->comment->create( array(
     32        self::factory()->comment->create( array(
    3333            'comment_approved' => 0
    3434        ) );
     
    4545
    4646    public function test_get_comment_count_spam() {
    47         self::$factory->comment->create( array(
     47        self::factory()->comment->create( array(
    4848            'comment_approved' => 'spam'
    4949        ) );
     
    6060
    6161    public function test_get_comment_count_trash() {
    62         self::$factory->comment->create( array(
     62        self::factory()->comment->create( array(
    6363            'comment_approved' => 'trash'
    6464        ) );
     
    7575
    7676    public function test_get_comment_count_post_trashed() {
    77         self::$factory->comment->create( array(
     77        self::factory()->comment->create( array(
    7878            'comment_approved' => 'post-trashed'
    7979        ) );
Note: See TracChangeset for help on using the changeset viewer.