1.在AndroidManifest清单文件中进行配置
<application 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{ } } |