posts - 32,comments - 8,trackbacks - 0

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

          1.在eclipse新建一個(gè)java project

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

          package example;

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


          3.右鍵點(diǎn)擊hello.java,選擇:new - junit test case
          setUp / tearDown打鉤, 最下方click here點(diǎn)擊,添加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. 運(yùn)行


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

          只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。


          網(wǎng)站導(dǎo)航:
           
          主站蜘蛛池模板: 古交市| 盘山县| 常德市| 政和县| 广宁县| 射阳县| 千阳县| 格尔木市| 新安县| 济阳县| 安阳县| 和平县| 讷河市| 中阳县| 富川| 余庆县| 石狮市| 体育| 柞水县| 安溪县| 定西市| 洛宁县| 秦安县| 邵武市| 濮阳市| 曲靖市| 本溪市| 扶绥县| 基隆市| 邵武市| 慈溪市| 成武县| 大新县| 湘乡市| 文昌市| 永定县| 安远县| 东平县| 调兵山市| 清苑县| 岗巴县|