So, no `@BeforeAll` in `kotlin.test`? I have a cas...
# test
a
So, no
@BeforeAll
in
kotlin.test
? I have a case where I need to setup the mockserver before all tests and close it after running all tests. Without
BeforeAll
and
AfterAll
. I need to start and close the server for each test. 😞 You may argue that the
BeforeAll
add dependencies among tests. But I think some times it makes sense.