Searched refs:base (Results 1 – 3 of 3) sorted by relevance
112 override fun apply(base: Statement, description: Description?): Statement { in apply()113 return ScreenshotTestStatement(base).run { testWatcher.apply(this, description) } in apply()116 class ScreenshotTestStatement(private val base: Statement) : Statement() { constant in androidx.test.screenshot.ScreenshotTestStatement124 base.evaluate() in evaluate()
43 BySelector base = By.clazz(".TextView"); in testCopy() local46 assertTrue(mDevice.hasObject(By.copy(base).text("Text View 1"))); in testCopy()47 assertTrue(mDevice.hasObject(By.copy(base).text("Item1"))); in testCopy()48 assertTrue(mDevice.hasObject(By.copy(base).text("Item3"))); in testCopy()51 assertFalse(mDevice.hasObject(By.copy(base).text("Accessible button"))); in testCopy()
50 useLibrary "android.test.base"