Nikky
08/31/2018, 6:23 PMval entryList by memoized { ... }
entryList.forEach { entry ->
it("test a") {
assert(entry.a)
}
}
which breaks.. instead one has to not change the tests at runtime, which leads to loops inside the it
or is there a third option i am missing ?raniejade
09/01/2018, 5:42 AMmemoized
is for values you will use in your test, not for setting up a test.