Skip to content

Commit e7decb4

Browse files
committed
Documented that stringEnds functions were added in 1.1.0
1 parent 4d79a3c commit e7decb4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Codeception/Util/Shared/Asserts.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,11 +464,17 @@ protected function assertStringNotContainsStringIgnoringCase($needle, $haystack,
464464
\Codeception\PHPUnit\TestCase::assertStringNotContainsStringIgnoringCase($needle, $haystack, $message);
465465
}
466466

467+
/**
468+
* @since 1.1.0 of module-asserts
469+
*/
467470
protected function assertStringEndsWith($suffix, $string, $message = '')
468471
{
469472
\Codeception\PHPUnit\TestCase::assertStringEndsWith($suffix, $string, $message);
470473
}
471474

475+
/**
476+
* @since 1.1.0 of module-asserts
477+
*/
472478
protected function assertStringEndsNotWith($suffix, $string, $message = '')
473479
{
474480
\Codeception\PHPUnit\TestCase::assertStringEndsNotWith($suffix, $string, $message);

0 commit comments

Comments
 (0)