kotest-assertions / io.kotest.properties / verifyAll

verifyAll

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


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


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


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


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


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


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


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


fun <A> verifyAll(iterations: Int, gena: Gen<A>, fn: PropertyContext.(a: A) -> Boolean): 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> verifyAll(noinline fn: PropertyContext.(a: A, b: B) -> Boolean): 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> verifyAll(iterations: Int, noinline fn: PropertyContext.(a: A, b: B) -> Boolean): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


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


fun <A, B> verifyAll(iterations: Int, gena: Gen<A>, genb: Gen<B>, fn: PropertyContext.(a: A, b: B) -> Boolean): 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> verifyAll(noinline fn: PropertyContext.(a: A, b: B, c: C) -> Boolean): 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> verifyAll(iterations: Int, noinline fn: PropertyContext.(a: A, b: B, c: C) -> Boolean): Unit
Deprecated: Deprecated and will be removed in 5.0. Migrate to the new property test classes in 4.0


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


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