您的位置:软件测试 > 开源软件测试 > 开源单元测试工具 > junit
JUnit4概述(二)
作者:网络转载 发布时间:[ 2013/12/10 9:29:08 ] 推荐标签:

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());

    }

}

相关链接:
上一页1234下一页
软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd