Я изучаю эспрессо, но у меня возникла путаница.Когда я хочу выполнить, нажмите кнопку A, но кнопку B.Но когда я переключаю две кнопки по порядку, это работает!Почему?
Показывать как следует
это моя деятельность impl
class TwoActivity : AppCompatActivity() {
var text = ""
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_two)
buttonA.setOnClickListener {
text = "buttonA"
}
buttonB.setOnClickListener {
text = "buttonB"
}
}
}
это мой макет XML-файла
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TwoActivity">
<Button android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="buttonA" android:id="@+id/buttonA"/>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="buttonB" android:id="@+id/buttonB"/>
</android.support.constraint.ConstraintLayout>
Это моймодульный тест
@RunWith(RobolectricTestRunner::class)
class TwoActivityTest {
@Test
fun clickButton1() {
var activity = launch(TwoActivity::class.java)
onView(withId(R.id.buttonA)).perform(click())
activity.onActivity {
assertEquals("buttonA",it.text)
}
}
}
я получил этот результат теста в консоли
org.junit.ComparisonFailure:
Expected :buttonA
Actual :buttonB