我有一个 Android InputMethodService的基本实现,我正在尝试为其编写单元测试。我的应用程序没有任何 Activites,只有 InputMethodService 的实现。
到目前为止,我有一个运行良好的 ServiceTestCase 的基本实现:
软键盘测试.java
public class SoftKeyboardTest extends ServiceTestCase<SoftKeyboard> {
@Override
protected void setUp() throws Exception {
super.setUp();
bindService(new Intent(this.getContext(), SoftKeyboard.class));
}
public void testShowKeyboard() {
this.getService().ShowKeyboard();
assertTrue(this.getService().GetKeyboardIsVisible());
}
public void testInsertText() {
String text = "Hello, world";
this.getService().InsertText(text);
assertEquals(this.getService().ReadText(text.length()), text);
}
}
但是,我想测试一些使用getCurrentInputConnection()将文本插入当前聚焦的 EditText 的功能:
软键盘.java
public void InsertText(String sentence) {
getCurrentInputConnection().commitText(sentence, 1);
}
public void ReadText(int chars) {
getCurrentInputConnection().getTextBeforeCursor(chars, 0);
}
显然,在这种情况下,由于实际上没有任何聚焦的 EditText,我得到了 NullPointerException。
如何让我的测试应用程序启动我的服务,以某种方式专注于 EditText,然后启动我的测试用例,以便我可以正确测试我的服务方法?