Make WordPress Core


Ignore:
Timestamp:
04/23/2017 09:57:31 PM (8 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Introduce skipWithoutMultisite() and skipWithMultisite() methods into the test suite.

This brings much needed uniformity to test skipping when a test requires Multisite or when a test should be excluded from running when Multisite is enabled.

Used in conjunction with the @group ms-required and @group ms-excluded notation, this removes a significant number of skipped tests from the default test suite run.

Fixes #40531

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/user/countUsers.php

    r40520 r40543  
    1313     */
    1414    public function test_count_users_is_accurate( $strategy ) {
    15 
    16         if ( is_multisite() ) {
    17             $this->markTestSkipped( 'Test does not run on multisite' );
    18         }
     15        $this->skipWithMultisite();
    1916
    2017        // Setup users
     
    6461     */
    6562    public function test_count_users_multisite_is_accurate( $strategy ) {
    66 
    67         if ( ! is_multisite() ) {
    68             $this->markTestSkipped( 'Test requires multisite' );
    69         }
     63        $this->skipWithoutMultisite();
    7064
    7165        // Setup users
Note: See TracChangeset for help on using the changeset viewer.