????Android ??????? ???????????????????????????????????????У???????????????
????Andorid ?????????????????????????????裺
????1. ??AndroidManifest.xml?м??????′???
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eworld.junittest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<uses-library android:name="android.test.runner" />
<activity
android:label="@string/app_name"
android:name=".JunitTestActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.eworld.junittest" >
</instrumentation>
</manifest>
????????tartgetPackage?????????????package????????
????2.??д???????????? ANdroidTestCase??
public class Test extends AndroidTestCace{
public void testSave()
{
MainTest test=new MainTest();
test.save(null);
}
??????Test???????????????? ?????? Android Junit Test ????Junit?????м?????????????????????
????????????????????????е??????  ??????-?? Android Test Project?????????????????????????
?????????????????Java?????????????????????????Java?????У???????