????1.??AndroidManifest?嵥????н???????

 

<application
android:allowBackup="true"
android:debuggable="true" >
<!--?????????-->
<uses-library android:name="android.test.runner" />
</application>
<!-- ???????????????????targetPackage-->
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:label="My Text"
android:targetPackage="edu.qust.text" >
</instrumentation>

????2.????????????AndroidTestCase???????

 

public class Text extend AndroidTestCase{
public void testAdd throws Exception{
}
}