Idea下Juint 单元测试实践

单元测试用的包:junit-4.1.jar

本质上就是提供了一个方便且功能强大的接口,省去了你写main方法的麻烦。


   
   
   
   
  1. package JunitPractice;
  2. public class Calculator {
  3. public int add(int x,int y){
  4. return x+y;
  5. }
  6. public int divide(int x,int y){
  7. return x/y;
  8. }
  9. public static void main(String[] args) {
  10. int z= new Calculator().add( 3, 5);
  11. System.out.println(z);
  12. }
  13. }

然后写个junit的例子


   
   
   
   
  1. package JunitTest;
  2. import JunitPractice.Calculator;
  3. import org.junit.After;
  4. import org.junit.Assert;
  5. import org.junit.Before;
  6. import org.junit.Test;
  7. import static org.junit.Assert.*;
  8. public class CalculatorTest {
  9. @Before
  10. public void setUp() throws Exception {
  11. System.out.println( "method called before...");
  12. }
  13. @After
  14. public void tearDown() throws Exception {
  15. System.out.println( "method called after...");
  16. }
  17. @Test
  18. public void add() throws Exception {
  19. Calculator cal= new Calculator();
  20. int result=cal.add( 2, 3);
  21. System.out.println( "run here");
  22. Assert.assertEquals( "答案是错的", 6,result);
  23. System.out.println( "run end");
  24. }
  25. @Test
  26. public void divide() throws Exception {
  27. }
  28. }

其中@before是在测试方法前调用的,@after是测试方法后调用的这两个方法不管测试方法是否报错是否发生异常,都会执行。另外,before和after是方法级的,意思是这俩方法会在所有的@Test方法运行时都会执行。

测试方法就是个简单的计算,如果断言结果是错的,就会发生异常中断,assert后面的方法将不会执行。

Idea下Juint 单元测试实践_第1张图片

 

你可能感兴趣的:(Idea下Juint 单元测试实践)