Changeset 52048
- Timestamp:
- 11/08/2021 05:07:49 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/wpIsNumericArray.php
r52037 r52048 2 2 3 3 /** 4 * @group formatting5 4 * @group functions.php 6 5 * @covers ::wp_is_numeric_array 7 6 */ 8 class Tests_Functions_ WpIsNumericArray extends WP_UnitTestCase {7 class Tests_Functions_wpIsNumericArray extends WP_UnitTestCase { 9 8 10 9 /** … … 16 15 * @param array $expected Expected result. 17 16 */ 18 function test_wp_is_numeric_array( $input, $expected ) {17 public function test_wp_is_numeric_array( $input, $expected ) { 19 18 $this->assertSame( $expected, wp_is_numeric_array( $input ) ); 20 19 }
Note: See TracChangeset
for help on using the changeset viewer.