????????????????????????????????????????????????????????????в????????????????bug????????????????????????????????????????

?????????Java???????????junit???в????????System.out.println()?????????????д??????????????????ζ?Android??y??? ??????????????????

???????????????????

????1???????????裺

?????????????AndroidManifest.xml????в??????′????? ????в???????????в???

?????????????д?????????? ???????????AndroidTestCase??

??????????????в???

????2?????????

??????????AndroidManifest.xml????????????????????????£?


    http://schemas.android.com/apk/res/android"
    package="cn.csdn.android.junit"
    android:versionCode="1"
    android:versionName="1.0" >
   
            android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
       
                    android:label="@string/app_name"
            android:name=".Junit_testActivity" >
           
               
               
           

 

 

 

           

   


    android:name="android.test.InstrumentationTestRunner"
    android:targetPackage="cn.csdn.android.junit"
    android:label="MyJunitTest"
    >

 

 

 

 

 

 

 

 


 


????????????????????

????????????? public void func1(){}???г??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????£?

package cn.csdn.android.junit;
import junit.framework.Assert;
import android.test.AndroidTestCase;
public class MyTest extends AndroidTestCase{
public void testFunc1() throws Throwable{
User u = new User();
u.func1();
}
public void testFunc2()throws Throwable{
User u = new User();
Assert.assertEquals(20??u.func2());
}
}