|
|
fun <T : Comparable<T>> beSorted(): Matcher<NonEmptyList<T>> |
|
|
fun <T> contain(t: T): Matcher<NonEmptyList<T>> |
|
|
fun <T> containAll(vararg ts: T): Matcher<NonEmptyList<T>>
fun <T> containAll(ts: List<T>): Matcher<NonEmptyList<T>> |
|
|
fun <T> containNoNulls(): Matcher<NonEmptyList<T>> |
|
|
fun <T> containNull(): Matcher<NonEmptyList<T>> |
|
|
fun <T> containOnlyNulls(): Matcher<NonEmptyList<T>> |
|
|
fun <T> haveDuplicates(): Matcher<NonEmptyList<T>> |
|
|
fun <T> haveElementAt(index: Int, element: T): Matcher<NonEmptyList<T>> |
|
|
fun <T> haveSize(size: Int): Matcher<NonEmptyList<T>> |
|
|
fun <T> singleElement(t: T): Matcher<NonEmptyList<T>> |