Changeset 51331 for trunk/tests/phpunit/tests/xmlrpc/wp/uploadFile.php
- Timestamp:
- 07/05/2021 05:21:53 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/uploadFile.php
r47122 r51331 28 28 29 29 // Check data types. 30 $this->assertI nternalType( 'string',$result['id'] );30 $this->assertIsString( $result['id'] ); 31 31 $this->assertStringMatchesFormat( '%d', $result['id'] ); 32 $this->assertI nternalType( 'string',$result['file'] );33 $this->assertI nternalType( 'string',$result['url'] );34 $this->assertI nternalType( 'string',$result['type'] );32 $this->assertIsString( $result['file'] ); 33 $this->assertIsString( $result['url'] ); 34 $this->assertIsString( $result['type'] ); 35 35 } 36 36 }
Note: See TracChangeset
for help on using the changeset viewer.