摘要:
每次调试android程序都需要启动模拟器,甚是麻烦。今天发现android中也是有testcase的。代码如下:HelloCase类import android.test.AndroidTestCase;import android.util.Log;public class HelloCase extends AndroidTestCase { public static void testHello(){ Log.i("hello","testCaSe"); }}AndroidManifest.xml<?xml version="1 阅读全文