i.e. ``` val testCases = table( headers("a","b",...
# kotlintest
d
i.e.
Copy code
val testCases = table(
  headers("a","b","result")
, row(MyThing1(), MyThing2(), MyThing3())
, row(MyThing1(), null, MyThing3())
, row(MyThing1(), MyThing2(), SubclassofMyThing3())
)