Changeset 51448 for trunk/tests/phpunit/tests/functions.php
- Timestamp:
- 07/16/2021 09:50:47 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions.php
r51438 r51448 1045 1045 $date_return = mysql_to_rfc3339( $actual ); 1046 1046 1047 $this->assert True( is_string( $date_return ), 'The date return must be a string' );1047 $this->assertIsString( $date_return, 'The date return must be a string' ); 1048 1048 $this->assertNotEmpty( $date_return, 'The date return could not be an empty string' ); 1049 1049 $this->assertSame( $expected, $date_return, 'The date does not match' );
Note: See TracChangeset
for help on using the changeset viewer.