kotest-assertions / io.kotest.properties / assertAll

assertAll

inline fun <reified A> assertAll(noinline fn: PropertyContext.(a: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A> assertAll(iterations: Int, noinline fn: PropertyContext.(a: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> assertAll(gena: Gen<A>, fn: PropertyContext.(a: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> Gen<A>.assertAll(iterations: Int = 1000, fn: PropertyContext.(a: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> Gen<A>.assertAll(iterations: Int = 1000, fn: PropertyContext.(a0: A, a1: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> Gen<A>.assertAll(iterations: Int = 1000, fn: PropertyContext.(a0: A, a1: A, a2: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> Gen<A>.assertAll(iterations: Int = 1000, fn: PropertyContext.(a0: A, a1: A, a2: A, a3: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> Gen<A>.assertAll(iterations: Int = 1000, fn: PropertyContext.(a0: A, a1: A, a2: A, a3: A, a4: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> Gen<A>.assertAll(iterations: Int = 1000, fn: PropertyContext.(a0: A, a1: A, a2: A, a3: A, a4: A, a5: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A> assertAll(iterations: Int, gena: Gen<A>, fn: PropertyContext.(a: A) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B> assertAll(noinline fn: PropertyContext.(a: A, b: B) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B> assertAll(iterations: Int, noinline fn: PropertyContext.(a: A, b: B) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B> assertAll(gena: Gen<A>, genb: Gen<B>, fn: PropertyContext.(a: A, b: B) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B> assertAll(iterations: Int, gena: Gen<A>, genb: Gen<B>, fn: PropertyContext.(a: A, b: B) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B, reified C> assertAll(noinline fn: PropertyContext.(a: A, b: B, c: C) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B, reified C> assertAll(iterations: Int, noinline fn: PropertyContext.(a: A, b: B, c: C) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C> assertAll(gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, fn: PropertyContext.(a: A, b: B, c: C) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C> assertAll(iterations: Int, gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, fn: PropertyContext.(a: A, b: B, c: C) -> Unit): Unit
inline fun <reified A, reified B, reified C, reified D> assertAll(noinline fn: PropertyContext.(a: A, b: B, c: C, D) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B, reified C, reified D> assertAll(iterations: Int, noinline fn: PropertyContext.(a: A, b: B, c: C, D) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C, D> assertAll(gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, gend: Gen<D>, fn: PropertyContext.(a: A, b: B, c: C, d: D) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C, D> assertAll(iterations: Int, gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, gend: Gen<D>, fn: PropertyContext.(a: A, b: B, c: C, d: D) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B, reified C, reified D, reified E> assertAll(noinline fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B, reified C, reified D, reified E> assertAll(iterations: Int, noinline fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C, D, E> assertAll(gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, gend: Gen<D>, gene: Gen<E>, fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C, D, E> assertAll(iterations: Int, gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, gend: Gen<D>, gene: Gen<E>, fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B, reified C, reified D, reified E, reified F> assertAll(noinline fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E, f: F) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


inline fun <reified A, reified B, reified C, reified D, reified E, reified F> assertAll(iterations: Int, noinline fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E, f: F) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C, D, E, F> assertAll(gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, gend: Gen<D>, gene: Gen<E>, genf: Gen<F>, fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E, f: F) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


fun <A, B, C, D, E, F> assertAll(iterations: Int, gena: Gen<A>, genb: Gen<B>, genc: Gen<C>, gend: Gen<D>, gene: Gen<E>, genf: Gen<F>, fn: PropertyContext.(a: A, b: B, c: C, d: D, e: E, f: F) -> Unit): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0