Skip to content

Commit

Permalink
Support text switcher
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Mar 30, 2023
1 parent e67cf3b commit f4ff8c0
Show file tree
Hide file tree
Showing 9 changed files with 602 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@file:Suppress("unused")

package io.github.kakaocup.kakao.viewswitcher

import android.view.View
import androidx.test.espresso.DataInteraction
import io.github.kakaocup.kakao.common.builders.ViewBuilder
import io.github.kakaocup.kakao.common.views.KBaseView
import org.hamcrest.Matcher

class KTextSwitcher : KBaseView<KTextSwitcher>, TextSwitcherAssertions {
constructor(function: ViewBuilder.() -> Unit) : super(function)
constructor(parent: Matcher<View>, function: ViewBuilder.() -> Unit) : super(parent, function)
constructor(parent: DataInteraction, function: ViewBuilder.() -> Unit) : super(parent, function)
}
Loading

0 comments on commit f4ff8c0

Please sign in to comment.