我试图测试应用程序的活动生命周期(testbuild)。当我开始编写testcase类时,我在类声明中遇到错误,即“testbuild”无法解析为类型。请有人解决这个问题。
package com.example.testbuild.test;
import android.test.ActivityInstrumentationTestCase2;
import com.example.testbuild.*;
public class second extends ActivityInstrumentationTestCase2<testbuild>
{
}
答案 0 :(得分:1)
您必须使用可测试的活动,而不是testbuild
:
public class second extends ActivityInstrumentationTestCase2<YourActivity>
{
//...
}