Eclipse中使用Junit編寫測試案例

來源:互聯網
上載者:User

標籤:java   eclipse   



Eclipse內建Junit外掛程式,不用安裝就能在項目中編寫測試案例,非常方便。

在項目中添加Junit庫

在編寫測試案例之前,需要先引入Junit。對項目根目錄右鍵,選擇Properties,Java Build Path,Libraries,

Add Library,選擇Junit:

點Next選擇Junit版本,然後Finish就完成了引入。

編寫測試案例

假設有如下類:

package choon.test;  public class Calculate {      public int  Add( int x, int y) {          return x + y;      } } 可以編寫測試案例如下: package choon.test;  import static org.junit.Assert.*;  import org.junit.Test;  public class Test1 {       @Test      public void test() {          Calculate calculate = new Calculate();          assertEquals( 8 , calculate.Add( 3 , 5 ));      }       } 對test方法右鍵Run As Junit Test即可運行該測試案例:

,綠色狀態條表示測試通過,如果是紅色,則表示沒有通過。

本文參考資料:www.cgzhw.com 遊戲編程網很不錯的技術網站。

before和after標籤

被before標記的方法在每個測試案例執行之前執行,被after標記的方法在每個測試案例執行後執行。

假如編寫如下測試案例:

package choon.test;  import static org.junit.Assert.*;  import org.junit.After; import org.junit.Before; import org.junit.Test;  public class Test1 {      @Before      public void setUp() {          System.out.println( "---begin test---" );      }            @Test      public void test() {          Calculate calculate = new Calculate();          assertEquals( 8 , calculate.Add( 3 , 5 ));          System.out.println( "test case" );      }            @After      public void tearDown() {          System.out.println( "---end test---" );      } }

則會有下面的執行結果:

測試案例的編寫很重要,一個不好的測試案例既起不到測試作用又浪費時間,而一個好的測試案例可以很好的指出代碼中的問題,避免更大的麻煩。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.