posts - 32,comments - 8,trackbacks - 0

          reference:
          http://dev.yesky.com/275/2132275.shtml

          1.在eclipse新建一個java project

          2.新建一個class: hello, package = example, 代碼如下:

          package example;

          public class hello
          {
           
          public int abs(int n)
           {
            
          return n >= 0 ? n : (-n);
           }
          }


          3.右鍵點擊hello.java,選擇:new - junit test case
          setUp / tearDown打鉤, 最下方click here點擊,添加JUnit.jar文件 - next

          4.選擇abs()方法

          5.修改Hellotest代碼:

          package example;

          import junit.framework.TestCase;

          public class helloTest extends TestCase
          {
              
          private hello _hello;

              
          protected void setUp() throws Exception
              {
                  
          super.setUp();

                  _hello 
          = new hello();
              }

              
          protected void tearDown() throws Exception
              {
                  
          super.tearDown();
              }

              
          public void testAbs()
              {
                  assertEquals(_hello.abs(
          14), 14);
                  assertEquals(_hello.abs(
          -5), 5);
                  assertEquals(_hello.abs(
          0), 0);
              }
          }


          6. 運行


          posted on 2008-12-03 15:38 張辰 閱讀(135) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 兴城市| 佛山市| 通化市| 淮安市| 钦州市| 诸城市| 民乐县| 石景山区| 马尔康县| 崇文区| 漾濞| 松江区| 垦利县| 韶山市| 乐都县| 贞丰县| 南华县| 合川市| 远安县| 本溪市| 于田县| 蕉岭县| 寻乌县| 佛教| 景泰县| 玉林市| 福清市| 榆中县| 新沂市| 泾源县| 洮南市| 锦屏县| 新民市| 尼玛县| 巴马| 奉化市| 襄樊市| 都江堰市| 天津市| 抚顺市| 武乡县|