function assertStringEndsNotWith in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertStringEndsNotWith()
Asserts that a string ends not 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 1333
Code
function assertStringEndsNotWith($suffix, $string, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertStringEndsNotWith', func_get_args());
}