TrySuccessCheckedMatcher
Value members
Inherited methods
Adapt a matcher to another.
ex: be_==("message") ^^ (_.getMessage aka "trimmed")
can be applied to an exception
Adapt a matcher to another.
ex: be_==("message") ^^ (_.getMessage aka "trimmed")
can be applied to an exception
The dummy value is used to help to disambiguate with the overloaded ^^ function
- Inherited from:
- Matcher
Adapt a matcher to another.
ex: be_==("message") ^^ (_.getMessage)
can be applied to an exception
Adapt a matcher to another.
ex: be_==("message") ^^ (_.getMessage)
can be applied to an exception
- Inherited from:
- Matcher
the logical and between 2 matchers
the logical and between 2 matchers
- See also:
MatchResult.and
- Inherited from:
- Matcher
- Value parameters:
- sleep
the function applied on the retry number (first is 1)
- Returns:
a matcher that needs to eventually match, after a given number of retries and a sleep time
aResult mustEqual(expected).eventually(retries = 2, _ * 100.milliseconds)
- Inherited from:
- Matcher
- Returns:
a matcher that needs to eventually match, after a given number of retries and a sleep time
- Inherited from:
- Matcher
- Returns:
a matcher that needs to eventually match, after 40 retries and a sleep time of 100 milliseconds
- Inherited from:
- Matcher
when the condition is true the matcher is applied, when it's false, the matcher must fail
when the condition is true the matcher is applied, when it's false, the matcher must fail
- Inherited from:
- Matcher
The lazily
operator returns a Matcher which will match a function returning the expected value
The lazily
operator returns a Matcher which will match a function returning the expected value
- Inherited from:
- Matcher
the logical or between 2 matchers
the logical or between 2 matchers
- See also:
MatchResult.or
- Inherited from:
- Matcher
- Returns:
a Pending MatchResult if this matcher fails, modifying the failure message with a pending message.
- Inherited from:
- Matcher
- Returns:
a Pending MatchResult if this matcher fails, prefixing the failure message with a pending message. If the pending message is empty, only the failure message is printed
- Inherited from:
- Matcher
- Returns:
a Skip MatchResult if this matcher fails, modifying the failure message with a skip message.
- Inherited from:
- Matcher
- Returns:
a Skip MatchResult if this matcher fails, prefixing the failure message with a skip message. If the skip message is empty, only the failure message is printed
- Inherited from:
- Matcher
only apply this matcher if the condition is false
only apply this matcher if the condition is false
- Inherited from:
- Matcher