Changeset 31311 for trunk/tests/phpunit/tests/functions.php
- Timestamp:
- 01/31/2015 02:11:46 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions.php
r31310 r31311 47 47 */ 48 48 function test_wp_parse_args_boolean_strings() { 49 $args = wp_parse_args( 'foo=false&bar=true' , array());49 $args = wp_parse_args( 'foo=false&bar=true' ); 50 50 $this->assertInternalType( 'string', $args['foo'] ); 51 51 $this->assertInternalType( 'string', $args['bar'] );
Note: See TracChangeset
for help on using the changeset viewer.