我已经在Android上工作了一段时间,但我对Android中的测试驱动开发工作还不熟悉。
我正在尝试测试 - 当我在EditText中输入任何文本时,RecyclerView会使用我键入的文本显示来自服务器的一些数据。
在实际应用中,我将从远程服务器接收RecyclerView的数据。但是如何测试它,没有任何外部资源?
我找到了Mockito,这是一个模拟框架,我知道它提供了模拟一些外部资源的方法..但是当我盯着写一些测试时,我很困惑......我该怎么办?我应该使用mock(Database.class)
或其他东西来模拟数据库的行为吗?
这是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/edit_text"
android:layout_width="0dp"
android:layout_height="56dp"
android:background="@color/colorPrimaryDark"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/jamquery_list"
android:background="@color/colorPrimaryDark"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/edit_text"/>
</android.support.constraint.ConstraintLayout>