zoukankan      html  css  js  c++  java
  • 单元测试过程

    1、界面布局

    <TextView

       android:id="@+id/textView"

       android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:text="Hello World"/>

    <EditText

        android:id="@+id/editText"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:hint="Enter your name here"/>

    <Button

        android:id="@+id/button"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

       android:text="say hello"

       android:onClick="sayHello"/>

    2、MainActivity.java

    先声明定义:private TextView textView;private EditText  editText;private Button btn;

     public void sayHello(View view){

        TextView  textView=(TextView) findViewById(R.id.textView);

        EditText   editText=(EditText)  findViewById(R.id.editText);

        textView.setText("Hello,"+editText.getText().toString()+"!");

    }

    3、测试代码

     public class MainActivityTest{

          private static final String STRING_TO_BE_TYPED=""Peter;

          @Rule

          public ActivityTestRule<MainActivity> mActivityRule=new ActivityTestRule<>(MainActivity.class);

          @Test

          public void sayHello(){

             onView(withId(R.id.editText)).perform(typeText(STRING_TO_BE_TYPED),closeSoftKeyboard());

             onView(withText("Say Hello!")).perform(click());

            String expectedText ="Hello,"+STRING_TO_BE_TYPED+"!";

            onView(withId(R.id.textView)).check(matches(withText(expectedText )));

    }

  • 相关阅读:
    [Tips] uncompyle6进行python的pyc反编译
    [Tips] pip太慢,换源
    [Notes] docker build与docker file
    [Tips] 生成当前python环境的依赖
    [Tips] imagePullPolicy取值
    [Tips] docker镜像和容器导出导入
    js模块化历程
    从一个简单例子来理解js引用类型指针的工作方式
    数组去重的方法总结
    js中const,var,let区别
  • 原文地址:https://www.cnblogs.com/zxw-1017/p/6580760.html
Copyright © 2011-2022 走看看