摘要: 每次调试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 阅读全文
posted @ 2012-11-03 11:06 清水居士 阅读(240) 评论(0) 推荐(0) 编辑