|
|
fun <T> Array<T>.shouldBeEmpty(): Unit |
|
|
infix fun <T, U> any_array<T>.shouldBeLargerThan(other: Collection<U>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldBeMonotonicallyDecreasing(): Unit |
|
|
fun <T> Array<T>.shouldBeMonotonicallyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldBeMonotonicallyIncreasing(): Unit |
|
|
fun <T> Array<T>.shouldBeMonotonicallyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
infix fun <T, U> any_array<T>.shouldBeSameSizeAs(other: Collection<U>): Unit |
|
|
fun <T> any_array<T>.shouldBeSingleton(): Unit |
|
|
infix fun <T, U> any_array<T>.shouldBeSmallerThan(other: Collection<U>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldBeSorted(): Unit |
|
|
infix fun <T> any_array<T>.shouldBeSortedWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldBeStrictlyDecreasing(): Unit |
|
|
fun <T> Array<T>.shouldBeStrictlyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldBeStrictlyIncreasing(): Unit |
|
|
fun <T> Array<T>.shouldBeStrictlyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T> Array<T>.shouldBeUnique(): Unit |
|
|
infix fun <T> Array<T>.shouldContain(t: T): Unit |
|
|
fun <T> any_array<T>.shouldContainAll(vararg ts: T): Unit |
|
|
fun <T> any_array<T>.shouldContainAnyOf(vararg ts: T): Unit |
|
|
fun <T> Array<T>.shouldContainDuplicates(): Unit |
|
|
infix fun <T> Array<T>?.shouldContainExactly(expected: Array<T>): Unit |
|
|
infix fun <T> Array<T>.shouldContainExactlyInAnyOrder(expected: Array<T>): Unit |
|
|
fun <T> any_array<T>.shouldContainInOrder(vararg ts: T): Unit |
|
|
fun <T> Array<T>.shouldContainNoNulls(): Unit |
|
|
fun <T> Array<T>.shouldContainNull(): Unit |
|
|
fun <T> Array<T>.shouldContainOnlyNulls(): Unit |
|
|
infix fun <T> any_array<T>.shouldEndWith(element: T): Unit |
|
|
infix fun <T> Array<T>.shouldExist(p: (T) -> Boolean): Unit |
|
|
infix fun <T> Array<T>.shouldHaveAtLeastSize(n: Int): Unit |
|
|
infix fun <T> Array<T>.shouldHaveAtMostSize(n: Int): Unit |
|
|
fun <T> Array<T>.shouldHaveElementAt(index: Int, element: T): Unit |
|
|
infix fun <T : Comparable<T>> Array<T>.shouldHaveLowerBound(t: T): Unit |
|
|
infix fun <T> any_array<T>.shouldHaveSingleElement(t: T): Unit |
|
|
infix fun <T> Array<T>.shouldHaveSize(size: Int): Unit |
|
|
infix fun <T : Comparable<T>> Array<T>.shouldHaveUpperBound(t: T): Unit |
|
|
fun <T> Array<T>.shouldNotBeEmpty(): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldNotBeMonotonicallyDecreasing(): Unit |
|
|
fun <T> Array<T>.shouldNotBeMonotonicallyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldNotBeMonotonicallyIncreasing(): Unit |
|
|
fun <T> Array<T>.shouldNotBeMonotonicallyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T> Array<T>.shouldNotBeSingleton(): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldNotBeSorted(): Unit |
|
|
infix fun <T> any_array<T>.shouldNotBeSortedWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldNotBeStrictlyDecreasing(): Unit |
|
|
fun <T> Array<T>.shouldNotBeStrictlyDecreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T : Comparable<T>> Array<T>.shouldNotBeStrictlyIncreasing(): Unit |
|
|
fun <T> Array<T>.shouldNotBeStrictlyIncreasingWith(comparator: Comparator<in T>): Unit |
|
|
fun <T> Array<T>.shouldNotBeUnique(): Unit |
|
|
infix fun <T> Array<T>.shouldNotContain(t: T): Unit |
|
|
fun <T> any_array<T>.shouldNotContainAll(vararg ts: T): Unit |
|
|
fun <T> any_array<T>.shouldNotContainAnyOf(vararg ts: T): Unit |
|
|
fun <T> Array<T>.shouldNotContainDuplicates(): Unit |
|
|
infix fun <T> Array<T>?.shouldNotContainExactly(expected: Array<T>): Unit |
|
|
infix fun <T> Array<T>.shouldNotContainExactlyInAnyOrder(expected: Array<T>): Unit |
|
|
infix fun <T> any_array<T>.shouldNotContainInOrder(expected: Array<T>): Unit |
|
|
fun <T> Array<T>.shouldNotContainNoNulls(): Unit |
|
|
fun <T> Array<T>.shouldNotContainNull(): Unit |
|
|
fun <T> Array<T>.shouldNotContainOnlyNulls(): Unit |
|
|
infix fun <T> any_array<T>.shouldNotEndWith(element: T): Unit |
|
|
fun <T> Array<T>.shouldNotHaveElementAt(index: Int, element: T): Unit |
|
|
infix fun <T> Array<T>.shouldNotHaveSingleElement(t: T): Unit |
|
|
infix fun <T> Array<T>.shouldNotHaveSize(size: Int): Unit |
|
|
infix fun <T> any_array<T>.shouldNotStartWith(element: T): Unit |
|
|
infix fun <T> any_array<T>.shouldStartWith(element: T): Unit |