So ``` fun JupiterTests.context( fixture: F, ...
# minutest
d
So
Copy code
fun JupiterTests.context(
    fixture: F,
    transform: (RuntimeNode) -> RuntimeNode = { it },
    noinline builder: Context<Unit, F>.() -> Unit
)

fun <F> topLevelContext(
    name: String,
    type: FixtureType,
    fixture: F,
    builder: Context<Unit, F>.() -> Unit
)

fun <F> topLevelContext(
    name: String,
    type: FixtureType,
    fixtureFactory: ((Unit, TestDescriptor) -> F)?,
    builder: Context<Unit, F>.() -> Unit
)

fun <reified F> Any.junitTests(
    fixture: F,
    transform: (RuntimeNode) -> RuntimeNode = { it },
    noinline builder: Context<Unit, F>.() -> Unit
)