com.ubertob.pesticide.core.DdtSetup.kt Maven / Gradle / Ivy
package com.ubertob.pesticide.core
data class DdtSetup>(private val block: StepBlock? = null) {
fun asStep() =
if (block != null)
DdtStep("settings", "Setting up the scenario", block)
else
DdtStep("settings", "No SetUp", {})
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy