com.autonomousapps.kit.render.Element.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!
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.kit.render
public sealed interface Element {
public fun render(scribe: Scribe): String
public fun start(indent: Int): String = " ".repeat(indent)
public interface Block : Element {
public val name: String
}
public interface Line : Element
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy