美文网首页Android studioAndroid静水流深
在Android Studio中进行单元测试和UI测试 - 7.

在Android Studio中进行单元测试和UI测试 - 7.

作者: TestDevTalk | 来源:发表于2015-06-03 21:07 被阅读8658次

    系列教程

    在使用Espresso进行UI测试前,让我们为app添加一些Views和简单的交互。我们使用一个用户可以输入名字的EditText,欢迎用户的Button和用于输出的TextView。打开res/layout/activity_main.xml,粘贴如下代码:
    activity_main.xml

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
        android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
    
        <TextView
            android:id="@+id/textView"
            android:text="@string/hello_world" android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <EditText
            android:hint="Enter your name here"
            android:id="@+id/editText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/textView"/>
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Say hello!"
            android:layout_below="@+id/editText"
            android:onClick="sayHello"/>
    </RelativeLayout>
    

    还需要在MainActivity.java中添加onClick handler:

    MainActivity.java

    public void sayHello(View v){
        TextView textView = (TextView) findViewById(R.id.textView);
        EditText editText = (EditText) findViewById(R.id.editText);
        textView.setText("Hello, " + editText.getText().toString() + "!");
    }
    

    现在可以运行app并确认一切工作正常。在点击Run按钮之前,确认你的Run Configuration没有设置为运行测试。如需更改,点击下拉选项,选择app

    下一篇:在Android Studio中进行单元测试和UI测试 - 8.创建并运行Espresso测试

    相关文章

      网友评论

        本文标题:在Android Studio中进行单元测试和UI测试 - 7.

        本文链接:https://www.haomeiwen.com/subject/rkydqttx.html