0.33.0 moves to using a single, top-level, non-ext...
# minutest
d
0.33.0 moves to using a single, top-level, non-extension function
rootContext
as the 'entry point'. I haven't quite got the
replaceWith
right I'm afraid. In addition, the MinutestEngine and JUnit 4 tests have moved to function invocation rather than val override for the context
Copy code
override val tests = context<Unit> { ... }
becomes
fun tests_() = rootContext<Unit> {}
This latter is also available to JUnit5Minutests (still aka JupiterTests) but
override val tests
is still supported for now.