com.autonomousapps.kit.android.AndroidStringRes.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.android
public class AndroidStringRes(public val content: String) {
override fun toString(): String = content
internal fun isBlank(): Boolean = content.isBlank()
public companion object {
@JvmField
public val DEFAULT: AndroidStringRes = AndroidStringRes(
"""
Hello, world
""".trimIndent()
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy