11_查看与输出日志信息

                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");
                    }
                }
原文地址:https://www.cnblogs.com/carl2380/p/4159331.html