对不起,我已经查看了各地的教程,但找不到我正在寻找的答案。我现在正在关注Google的教程:https://developer.android.com/training/testing/unit-testing/instrumented-unit-tests.html
我正在尝试创建一个检测测试,当我运行它时,我收到错误:java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
所以我的测试如下:
package testapp.silencertestapp;
import android.support.test.filters.SmallTest;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
@RunWith(AndroidJUnit4.class)
@SmallTest
public class MainActivityTest {
private MainActivity testMain;
@Before
public void createActivity(){
testMain = new MainActivity();
}
@Test
public void checkFancyStuff(){
String time = testMain.createFancyTime(735);
assertThat(time, is("07:35"));
}
}
我试图在主要活动中运行一个方法如下(这是一个摘录):
public class MainActivity extends AppCompatActivity {
private TimePicker start;
private TimePicker end;
@Override
protected void onCreate(Bundle savedInstanceState) {
start = (TimePicker) findViewById(R.id.startPicker);
end = (TimePicker) findViewById(R.id.endPicker);
}
String createFancyTime(int combinedTime) {
StringBuilder tempString = new StringBuilder(Integer.toString(combinedTime));
if(tempString.length()==4){
tempString = tempString.insert(2, ":");
}
else if (tempString.length()==3){
tempString = tempString.insert(1, ":");
tempString = tempString.insert(0, "0");
}
else if(tempString.length()==2){
tempString = tempString.insert(0, "00:");
}
else if(tempString.length()==1){
tempString = tempString.insert(0, "00:0");
}
return tempString.toString();
}
我认为这是一个问题,因为我没有正确启动服务或者某些东西 - 我尝试过多种方法,但我只是到处都是错误。在这里搜索并且这个错误很受欢迎,但与测试无关,所以想知道是否有人可以指出我正确的方向,以便我可以测试这个类中的方法?
答案 0 :(得分:3)
发生错误的原因是未正确设置被测系统Looper
MainActivity
。
虽然Activity
,Fragment
等没有args构造函数,但它们被设计为由Android操作系统实例化,因此调用MainActivity = new Activity()
不足以获得完全 - 操作死亡之星实例已完成Handler
和Looper
。
如果您想继续进行测试,有两种选择:
如果您想测试一个活动的真实实例,那么它必须是instrumented unit test(androidTest
而不是test
),而@TestRule
会导致Android OS正确实例化Activity的实例:
@Rule
public ActivityTestRule<MainActivity> mActivityRule =
new ActivityTestRule(MainActivity.class);
如果您希望继续编写在IDE中运行的本地单元测试,则可以使用Robolectric。 Robolectric将在阴影活动中正确存根行为,以便您可以测试依赖Looper
等的组件。请注意,这涉及一些设置。
答案 1 :(得分:0)
我就是这样解决的。我使用 runOnMainSync
在主线程上运行测试用例。这是完整的解决方案:
@RunWith(AndroidJUnit4::class)
class AwesomeViewModelTest {
@Test
fun testHandler() {
getInstrumentation().runOnMainSync(Runnable {
val context = InstrumentationRegistry.getInstrumentation().targetContext
// Here you can call methods which have Handler
})
}
}