dmcg
12/01/2018, 10:15 PMfun 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
)