类声明出错," testbuild"无法解析为某种类型

时间:2014-07-20 18:37:21

标签: android android-testing android-instrumentation

我试图测试应用程序的活动生命周期(testbuild)。当我开始编写testcase类时,我在类声明中遇到错误,即“testbuild”无法解析为类型。请有人解决这个问题。

package com.example.testbuild.test;
import android.test.ActivityInstrumentationTestCase2;
import com.example.testbuild.*;
public class second extends ActivityInstrumentationTestCase2<testbuild> 
{
}

1 个答案:

答案 0 :(得分:1)

您必须使用可测试的活动,而不是testbuild

public class second extends ActivityInstrumentationTestCase2<YourActivity> 
{
     //...
}