Gilles Barbier
11/14/2023, 11:34 AMclass Tests : StringSpec(
{
val client = // client definition from a resource file - I'd like to do the same tests with another resource file
"my test" {
... test implementation using client
}
Rob Elliot
11/14/2023, 11:41 AMGilles Barbier
11/14/2023, 11:42 AMOliver.O
11/14/2023, 12:29 PMclass Tests : StringSpec(
{
for (client in listOf(def1, def2, ...) {
"my test" {
... test implementation using client
}
}
}
)