assertk / assertk / Table1

Table1

(common, jvm) class Table1<C1> : Table

A table with rows of 1 value.

See Also

tableOf

Functions

(common, jvm)

forAll

Runs the given lambda for each row in the table.

fun forAll(f: (C1) -> Unit): Unit
(common, jvm)

row

Adds a row to the table with the given values.

fun row(val1: C1): Table1<C1>