Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/21/2019 10:07:43 PM (6 years ago)
Author:
espellcaste
Message:

Mark unit tests without tests as incomplete.

There are a few tests that were added but had no actual tests done on them. This commit mark them as incomplete. This avoids warnings when running the tests.

Fixes #8039

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/testcases/groups/class-bp-groups-group.php

    r11838 r12328  
    10901090        // @todo
    10911091        //$this->assertEquals( array( $g1->id ), $found );
     1092
     1093        // Remove the following lines when you implement this test.
     1094        $this->markTestIncomplete(
     1095            'This test has not been implemented yet.'
     1096        );
    10921097    }
    10931098
     
    11981203        // The test fails but at least it's sanitized
    11991204        //$this->assertEquals( array( $g1->id ), $found );
     1205
     1206        // Remove the following lines when you implement this test.
     1207        $this->markTestIncomplete(
     1208            'This test has not been implemented yet.'
     1209        );
    12001210    }
    12011211
Note: See TracChangeset for help on using the changeset viewer.