当我使用Robotium运行测试时,我使用断言来验证页面上是否有特定文本,但它失败了。但是,当我在没有断言的情况下运行测试时,测试通过。为什么会这样?
这是我的代码:
import com.jayway.android.robotium.solo.Solo;
import android.test.ActivityInstrumentationTestCase2;
import android.test.suitebuilder.annotation.Smoke;
@SuppressWarnings("unchecked")
public class ODPRobotiumTest extends ActivityInstrumentationTestCase2 {
private static final String TARGET_PACKAGE_ID = "com.gravitymobile.app.hornbill";
private static final String LAUNCHER_ACTIVITY_FULL_CLASSNAME = "com.vzw.odp.LaunchActivity";
private static Class<?>launcherActivityClass;
static{
try{
launcherActivityClass = Class.forName(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
} catch (ClassNotFoundException e){
throw new RuntimeException(e);
}
}
@SuppressWarnings({ "unchecked", "deprecation" })
public ODPRobotiumTest() throws ClassNotFoundException{
super(TARGET_PACKAGE_ID, launcherActivityClass);
}
private Solo solo;
@Override
protected void setUp() throws Exception{
solo = new Solo(getInstrumentation(), getActivity());
}
@Smoke
public void testLine1(){
try {
assertTrue(solo.searchText("Easy to Find")) ;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Smoke
public void testLine2(){
try{
solo.searchText("Hassle-Free");
}catch(Exception e){
e.printStackTrace();
}
}
@Smoke
public void testLine3(){
solo.searchText("Trust");
}
public void testLine4(){
solo.searchText("Verizon Curated Wallpaper");
}
public void testLine5(){
solo.searchText("Taco's");
}
@Override
public void tearDown() throws Exception{
try{
solo.finalize();
}catch(Throwable e){
e.printStackTrace();
}
getActivity().finish();
super.tearDown();
}
}
testLine1中的测试是失败的测试。但就像我之前说过的那样,当我不使用assertTrue时,只需要solo.searchTest(“易于查找”),测试就会通过。我不明白。
感谢您的帮助!
答案 0 :(得分:2)
如果你没有断言任何东西,那么你的测试将通过,因为没有任何东西可以失败。
显然,您正在搜索的文本在屏幕上丢失,测试运行器的配置错误,或者您甚至没有使用正确的搜索机制。
答案 1 :(得分:0)
我刚刚发现我要验证的内容是HTML。因此,由于Robotium不能与HTML或任何其他Web组件一起使用,因此它不会验证我正在寻找的文本。
感谢所有提供帮助的人!