我是 android 新手,我想在 android 中进行 junit 测试,然后我从 android 网站遵循了这段代码
我收到很多错误,因为HelloAndroid 无法解析为一种类型
此行有多个标记 - HelloAndroid 无法解析为类型 - 构造函数 ActivityInstrumentationTestCase2(Class) 指的是缺少的类型 HelloAndroid
此行有多个标记 - ActivityInstrumentationTestCase2 类型的方法 getActivity() 指的是缺少的类型 HelloAndroid - HelloAndroid 无法解析为类型
此行有多个标记 - HelloAndroid 无法解析为类型 - com.example.helloandroid.R 无法解析为变量
package com.example.helloandroid.test;
import android.test.ActivityInstrumentationTestCase2;
import android.widget.TextView;
public class HelloAndroidTest extends ActivityInstrumentationTestCase2<HelloAndroid> {
private HelloAndroid mActivity; // the activity under test
private TextView mView; // the activity's TextView (the only view)
private String resourceString;
public HelloAndroidTest() {
super("com.example.helloandroid", HelloAndroid.class);
}
@Override
protected void setUp() throws Exception {
super.setUp();
mActivity = this.getActivity();
mView = (TextView) mActivity.findViewById(com.example.helloandroid.R.id.textview);
resourceString = mActivity.getString(com.example.helloandroid.R.string.hello);
}
public void testPreconditions() {
assertNotNull(mView);
}
public void testText() {
assertEquals(resourceString,(String)mView.getText());
}
}
谁能帮我