com.autonomousapps.kit.gradle.Import.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-testkit-support Show documentation
Show all versions of gradle-testkit-support Show documentation
A DSL for building test fixtures with Gradle TestKit
The newest version!
package com.autonomousapps.kit.gradle
import com.autonomousapps.kit.render.Element
import com.autonomousapps.kit.render.Scribe
public class Import(
private val import: String,
) : Element.Line {
override fun render(scribe: Scribe): String {
return scribe.line { s ->
s.append("import ")
s.append(import)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy