I have added context methods to supply the fixture...
# minutest
d
I have added context methods to supply the fixture rather than waiting for a fixture call
Copy code
@TestFactory fun `supply fixture at top`() = junitTests("banana") {
        context("parent had no fixture") {
            test("test") {
                assertEquals("banana", this)
            }
        }
    }