Android黑盒robotium测试问题
我的黑盒测试代码按照文档一步一步创建,代码大致如下:
package com.example.android.notepad.test;
import java.util.ArrayList;
import android.test.ActivityInstrumentationTestCase2;
import android.view.View;
import com.jayway.android.robotium.solo.Solo;
@SuppressWarnings("unchecked")
public class NoteTest extends ActivityInstrumentationTestCase2 {
private Solo solo;
private static final String LAUNCHER_ACTIVITY_CLASS = "com.example.android.notepad.NotesList";
private static Class launcherActivityClass;
static {
try {
launcherActivityClass = Class.forName(LAUNCHER_ACTIVITY_CLASS);
} catch(ClassNotFoundException e) {
System.out.print(e);
}
}
public NoteTest() throws ClassNotFoundException {
super(launcherActivityClass);
}
protected void setUp() throws Exception {
solo = new Solo(getInstrumentation(), getActivity());
}
protected void tearDown() throws Exception {
solo.finishOpenedActivities();
}
}
我在每个函数中都打印断点,调试方式As Android test Application。 调式运行的时候没有进入任何函数。
查看LogCat发现异常问题: 01-20 16:19:01.093: I/AndroidRuntime(2211): NOTE: attach of thread 'Binder Thread #3' failed
请教各位这个是什么原因,怎样解决。 我测试环境是模拟器。
谢谢。。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
增加测试用例后,在模拟器上测试成功,但是在真机上运行测试程序会出现下面错误:Test launch failed: Could not connect to: : 3563。
请教这个是什么原因?
搞定了,但具体原因不清楚,加了一个测试用例和异常捕获就可以了。