Skip to content

Instantly share code, notes, and snippets.

View andersu's full-sized avatar

Anders Ullnæss andersu

View GitHub Profile
private val myTextView = onView(withId(R.id.my_text_view))
fun checkContentDescription(text: String) {
myTextView.check { view, _ ->
assertEquals(view.contentDescription, text)
}
}
@andersu
andersu / build.gradle
Last active September 30, 2020 17:22
Project build.gradle
dependencies {
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.3.0"
}
subprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"
ktlint {
reporters {
reporter "html"