|
|
fun <T : Comparable<T>> List<T>.shouldBeMonotonicallyDecreasing(): Unit |
|
|
fun <T> List<T>.shouldBeMonotonicallyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldBeMonotonicallyIncreasing(): Unit |
|
|
fun <T> List<T>.shouldBeMonotonicallyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldBeSorted(): Unit |
|
|
infix fun <T> List<T>.shouldBeSortedWith(comparator: Comparator<in T>): Unit
infix fun <T> List<T>.shouldBeSortedWith(cmp: (T, T) -> Int): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldBeStrictlyDecreasing(): Unit |
|
|
fun <T> List<T>.shouldBeStrictlyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldBeStrictlyIncreasing(): Unit |
|
|
fun <T> List<T>.shouldBeStrictlyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T> List<T>.shouldContainInOrder(vararg ts: T): Unit
infix fun <T> List<T>.shouldContainInOrder(expected: List<T>): Unit |
|
|
infix fun <T> List<T>.shouldEndWith(element: T): Unit
infix fun <T> List<T>.shouldEndWith(slice: Collection<T>): Unit
infix fun <T> List<T>.shouldEndWith(slice: Array<T>): Unit |
|
|
fun <T> List<T>.shouldHaveElementAt(index: Int, element: T): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldNotBeMonotonicallyDecreasing(): Unit |
|
|
fun <T> List<T>.shouldNotBeMonotonicallyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldNotBeMonotonicallyIncreasing(): Unit |
|
|
fun <T> List<T>.shouldNotBeMonotonicallyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldNotBeSorted(): Unit |
|
|
infix fun <T> List<T>.shouldNotBeSortedWith(comparator: Comparator<in T>): Unit
infix fun <T> List<T>.shouldNotBeSortedWith(cmp: (T, T) -> Int): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldNotBeStrictlyDecreasing(): Unit |
|
|
fun <T> List<T>.shouldNotBeStrictlyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> List<T>.shouldNotBeStrictlyIncreasing(): Unit |
|
|
fun <T> List<T>.shouldNotBeStrictlyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
infix fun <T> List<T>.shouldNotContainInOrder(expected: List<T>): Unit |
|
|
infix fun <T> List<T>.shouldNotEndWith(element: T): Unit
infix fun <T> List<T>.shouldNotEndWith(slice: Collection<T>): Unit |
|
|
fun <T> List<T>.shouldNotHaveElementAt(index: Int, element: T): Unit |
|
|
infix fun <T> List<T>.shouldNotStartWith(element: T): Unit
infix fun <T> List<T>.shouldNotStartWith(slice: Collection<T>): Unit |
|
|
infix fun <T> List<T>.shouldStartWith(element: T): Unit
infix fun <T> List<T>.shouldStartWith(slice: Collection<T>): Unit |