function assertStringEndsWith in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertStringEndsWith()
Asserts that a string ends with a given prefix.
@since Method available since Release 3.4.0
Parameters
string $suffix:
string $string:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1349
Code
function assertStringEndsWith($suffix, $string, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertStringEndsWith', func_get_args());
}