com.autonomousapps.kit.gradle.SourceSet.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
package com.autonomousapps.kit.gradle
import com.autonomousapps.kit.render.Element
import com.autonomousapps.kit.render.Scribe
public class SourceSet(
public val name: String
) : Element.Line {
override fun render(scribe: Scribe): String = scribe.line { s ->
s.append(name)
}
public companion object {
@JvmStatic
public fun ofName(name: String): SourceSet = SourceSet(name)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy