您的位置:軟件測試 > 開源軟件測試 > 開源單元測試工具 > junit
在Eclipse中使用JUnit4進行單元測試
作者:網(wǎng)絡(luò)轉(zhuǎn)載 發(fā)布時間:[ 2016/11/7 10:39:08 ] 推薦標(biāo)簽:單元測試 Junit

  之后系統(tǒng)會自動生成一個新類CalculatorTest,里面包含一些空的測試用例。你只需要將這些測試用例稍作修改即可使用。完整的CalculatorTest代碼如下:
  package andycpp;
  import static org.junit.Assert.*;
  import org.junit.Before;
  import org.junit.Ignore;
  import org.junit.Test;
  public class CalculatorTest {
  private static Calculator calculator = new Calculator();
  @Before
  public void setUp() throws Exception {
  calculator.clear();
  }
  @Test
  public void testAdd() {
  calculator.add(2);
  calculator.add(3);
  assertEquals(5, calculator.getResult());
  }
  @Test
  public void testSubstract() {
  calculator.add(10);
  calculator.substract(2);
  assertEquals(8, calculator.getResult());
  }
  @Ignore("Multiply() Not yet implemented")
  @Test
  public void testMultiply() {
  }
  @Test
  public void testDivide() {
  calculator.add(8);
  calculator.divide(2);
  assertEquals(4, calculator.getResult());
  }
  }
  第四步,運行測試代碼:按照上述代碼修改完畢后,我們在CalculatorTest類上點右鍵,選擇“Run As à JUnit Test”來運行我們的測試,如下圖所示:

  運行結(jié)果如下:

  進度條是紅顏色表示發(fā)現(xiàn)錯誤,具體的測試結(jié)果在進度條上面有表示“共進行了4個測試,其中1個測試被忽略,一個測試失敗”
  至此,我們已經(jīng)完整體驗了在Eclipse中使用JUnit的方法。

上一頁12下一頁
軟件測試工具 | 聯(lián)系我們 | 投訴建議 | 誠聘英才 | 申請使用列表 | 網(wǎng)站地圖
滬ICP備07036474 2003-2017 版權(quán)所有 上海澤眾軟件科技有限公司 Shanghai ZeZhong Software Co.,Ltd