fun <T : CharSequence, S : CharSequenceContains.SearchBehaviour> CharSequenceContains.EntryPointStep<T, S>.notOrAtMost(times: Int): NotOrAtMostCheckerStep<T, S>
fun <T : CharSequence, S : CharSequenceContains.SearchBehaviour> CharSequenceContains.Builder<T, S>.notOrAtMost(times: Int): NotOrAtMostCheckerOption<T, S>
Restricts a contains
assertion by specifying that the number of occurrences of the value which we
are looking for occurs not at all or at most
number of times within the search input.
times
- The number which the check will compare against the actual number of times an expected value is
found in the input of the search.
IllegalArgumentException
- In case times is smaller than zero.
IllegalArgumentException
- In case times equals to zero; use containsNot instead.
Return
The newly created builder.
fun <E, T : Iterable<E>, S : InAnyOrderSearchBehaviour> IterableContains.Builder<E, T, S>.notOrAtMost(times: Int): NotOrAtMostCheckerOption<E, T, S>
Restricts a contains
assertion by specifying that the number of occurrences of the entry which we
are looking for occurs not at all or at most
number of times within the Iterable.
times
- The number which the check will compare against the actual number of times an expected entry is
found in the Iterable.
IllegalArgumentException
- In case times is smaller than zero.
IllegalArgumentException
- In case times equals to zero; use containsNot instead.
Return
The newly created builder.
fun <E, T, S : InAnyOrderSearchBehaviour> IterableLikeContains.EntryPointStep<E, T, S>.notOrAtMost(times: Int): NotOrAtMostCheckerStep<E, T, S>
Restricts a contains
assertion by specifying that the number of occurrences of the entry which we
are looking for occurs not at all or at most
number of times within the IterableLike.
times
- The number which the check will compare against the actual number of times an expected entry is
found in the IterableLike.
IllegalArgumentException
- In case times is smaller than zero.
IllegalArgumentException
- In case times equals to zero; use containsNot instead.
Return
The newly created builder.
Since
0.14.0 -- API existed for Iterable but not for IterableLike.