Make WordPress Core


Ignore:
Timestamp:
04/23/2017 09:57:31 PM (6 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.php

    r40520 r40543  
    653653     */
    654654    function test_illegal_user_logins_multisite() {
    655         if ( ! is_multisite() ) {
    656             $this->markTestSkipped( __METHOD__ . ' requires multisite.' );
    657         }
     655        $this->skipWithoutMultisite();
    658656
    659657        $user_data = array(
Note: See TracChangeset for help on using the changeset viewer.