So it was just too hard to explain when to use JUn...
# minutest
d
So it was just too hard to explain when to use JUnitTests and JUnitFixtureTests, so I've added a JupiterTests
Copy code
object FirstMinutests : JupiterTests<Fixture>() {
    class Fixture { ... }
    override val tests = context {
        test("my first test") {
which keeps the annotation scariness hidden for both cases at the expense of another level of indentation.
r
I’m not sure I get the difference