Make WordPress Core

Changeset 53835


Ignore:
Timestamp:
08/04/2022 05:47:41 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Tests: Use named data provider for WP_Object_Cache::is_valid_key() test.

This makes the output when using the --testdox option more descriptive and is helpful when trying to debug which data set from a data provider failed the test.

Follow-up to [53818], [53821], [53822], [53834].

See #56198.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/cache.php

    r53834 r53835  
    6060    public function data_is_valid_key() {
    6161        return array(
    62             array( false, false ),
    63             array( null, false ),
    64             array( "\n", false ),
    65             array( "\0", false ),
    66             array( '', false ),
    67             array( ' ', false ),
    68             array( '  ', false ),
    69             array( 0.0, false ),
    70             array( 0, true ),
    71             array( 1, true ),
    72             array( '0', true ),
    73             array( 'key', true ),
     62            'false'          => array( false, false ),
     63            'null'           => array( null, false ),
     64            'line break'     => array( "\n", false ),
     65            'null character' => array( "\0", false ),
     66            'empty string'   => array( '', false ),
     67            'single space'   => array( ' ', false ),
     68            'two spaces'     => array( '  ', false ),
     69            'float 0'        => array( 0.0, false ),
     70            'int 0'          => array( 0, true ),
     71            'int 1'          => array( 1, true ),
     72            'string 0'       => array( '0', true ),
     73            'string'         => array( 'key', true ),
    7474        );
    7575    }
Note: See TracChangeset for help on using the changeset viewer.