public class LogTest extends AndroidTestCase { private static final String TAG="LogTest"; public void testOutLog() throws Throwable{ Log.i(TAG, "www.itcast.com"); } public void testOutLog2() throws Throwable{ System.out.println("www.itcast.com"); } public void testOutLog3() throws Throwable{ System.err.println("www.itcast.com"); } }