TA的每日心情 | 开心 2016-1-14 12:39 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
最近在搞Android自动化测试
刚刚搜到了一篇利用robotium实现自动化的测试。
编写TestCase时,需要如下代码:
package com.android.helloworld.test;
import android.test.ActivityInstrumentationTestCase2;
import com.android.helloworld.ActivityMain;
import com.jayway.android.robotium.solo.Solo;
public class UITextTest extends ActivityInstrumentationTestCase2<ActivityMain>{
private Solo solo;
public UITextTest() {
super("com.android.helloworld", ActivityMain.class);
}
public void setUp()throws Exception {
solo=newSolo(getInstrumentation(), getActivity());
}
public void testUI()throws Exception {
boolean expected =true;
boolean actual =solo.searchText("This") &&solo.searchText("is");
assertEquals("This and/or is are not found", expected, actual);
}
}
其中“import com.android.helloworld.ActivityMain”;出错,提示无法解析。本人是代码白痴,还请各位高手告诉我为什么。是要加什么东西么 |
|