My cunning plan, now that the builder is separated...
# minutest
d
My cunning plan, now that the builder is separated from the runner, is to provide a fixture for you if there is a no-arg constructor. That way you will be able to do
Copy code
junitTests<Fixture> {
    context {
        test("will get default fixture") { ... }
    }
    context {
        fixture { this.modified() }
        test("will get modified fixture") { ... }
    }
}
removing the need to specify
derivedContext