say Hellow

/**
 2  * Created by GuYin on 2017/3/15.
 3  */
 4 @RunWith(AndroidJUnit4.class)
 5 @LargeTest
 6 public class MainTest {
 7     private static final String STRING_TO_BE_TYPED = "peter";
 8
 9 @Rule
10 public ActivityTestRule<MainActivity> mainActivityRule = new ActivityTestRule<>(MainActivity.class);
11
12     @Test
13     public void sayHello(){
14         onView(withId(R.id.name)).perform(typeText(STRING_TO_BE_TYPED), ViewActions.closeSoftKeyboard());
15         onView(withText("SAY HELLO")).perform(click());
16         String expectedText = "Hello,"+STRING_TO_BE_TYPED+"!";
17         onView(withId(R.id.text)).check(matches(withText(expectedText)));
18     }
19 }

时间: 2024-10-14 01:58:25

say Hellow的相关文章

Qt Widget体系的Hellow Word

选择application模板,一路确定 创建完目录如下 修改mainwindow.h #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow {     Q_OBJECT public:     explicit MainWindow(QWidget *parent = 0)

一个控制台的Hellow Word

只要选择Qt控制台应用一路下一步即可,其中有一个选项是项目管理,项目管理有一个选项是版本控制系统,这个选项可以跟github联用 #include <QCoreApplication> #include <iostream> #include <cstdlib> int main(int argc, char *argv[]) {     QCoreApplication a(argc, argv);     std::cout<<"Hellow 

Java-struts2 配置hellow world

这里进行struts框架的配置问题,和简单的输出hellow world 配置的步骤 1.      配置TomCat 2.      Jak 3.      拷贝Struts.xml文件到src目录 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration

Error: Couldn&#39;t run process C:/altera/11.0/quartus//sopc_builder/bin/sopc_builder --classic --generate F:/nios-wenjian/hellow/KERNEL.ptf successfully

Under your Quartus II folder, go to bin->cygwin->bin folder, select the following files in the list below and then right-click and choose Properties. Under the Compatibility tab, check“Run this program in compatibility mode for:” and choose “Windows

C#学习之--Hellow World

这里主要看一下Hello World代码 // 单行注释 /* 多行注释 */ /// XML文档注释 using System; // 包含命名空间,类似PHP的use using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 // 声明命名空间 { class Progra //声明一个P

Hellow BeiJing

(#^.^#),今天是9.23日,离出发去北京还有7天,好像一切还是正常的样子. 先发一张图,这就是我们机房的日常: 但是o( ̄ヘ ̄o#)我听着我耳边的cys童鞋的rap就感觉事情仿佛没辣么简单,连讨论话题的中心也在向北京偏转.

第一讲:hellow spring mvc

1.mvc框架要做哪些事情 a)将url映射到java类或java类的方法 b)封装用户提交的数据 c)处理请求-调用相关的业务处理-封装相应的数据 d)将响应数据的数据进行渲染jap.html.freemarker等 2.spring mvc 是一个轻量级的,基于请求响应的mvc框架. 3.为什么要学习spring mvc? a)性能较struts2好. b)简单.便捷.易学. c)天生和spring无缝集成(使用spring ioc.aop). d)使用约定优于配置 e)能够进行简单的jun

我来了“hellow world”

PHP(全称:PHP: Hypertext Preprocessor,中文名:「超文本预处理器」)是一种通用开源脚本语言.语法吸收了 C 语言.Java 和 Perl 的特点,利于学习,使用广泛,主要适用于 Web 开发领域.PHP 独特的语法混合了 C.Java.Perl 以及 PHP 自创的语法.它可以比 CGI 或者 Perl 更快速地执行动态网页.用 PHP 做出的动态页面与其他的编程语言相比,PHP 是将程序嵌入到 HTML(标准通用标记语言下的一个应用)文档中去执行,执行效率比完全生

关于Firefox浏览器如何支持ActiveX控件,一个小的Hellow World

今天尝试开发一个Firefox的插件.虽然比较简单,网上也有很多教程,但是感觉一些教程写的比较麻烦,在初步的开发过程中并没有用到那些东西,于是自己把开发过程记录下来.我是根据Mozilla官方教程开发的,有兴趣的朋友可以自己去看看:https://developer.mozilla.org/en/Building_an_Extension.按照一般的教程,第一个程序都是使用最简单的Hello World,现在我们就制作一个Firefox的Hello World插件.开发Firefox插件并没有看