file-fetcher
|
Constraint that asserts that the string it is evaluated for contains a given string.
Uses mb_strpos() to find the position of the string in the input, if not found the evaluation fails.
The sub-string is passed in the constructor.
Public Member Functions | |
__construct (string $string, bool $ignoreCase=false) | |
toString () | |
![]() | |
evaluate ($other, string $description='', bool $returnResult=false) | |
count () | |
Protected Member Functions | |
matches ($other) | |
![]() | |
exporter () | |
fail ($other, $description, ComparisonFailure $comparisonFailure=null) | |
additionalFailureDescription ($other) | |
failureDescription ($other) | |
PHPUnit\Framework\Constraint\StringContains::__construct | ( | string | $string, |
bool | $ignoreCase = false |
||
) |
|
protected |
Evaluates the constraint for parameter $other. Returns true if the constraint is met, false otherwise.
mixed | $other | value or object to evaluate |
Reimplemented from PHPUnit\Framework\Constraint\Constraint.
PHPUnit\Framework\Constraint\StringContains::toString | ( | ) |
Returns a string representation of the constraint.
Implements PHPUnit\Framework\SelfDescribing.