• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

Junit4实例软件测试经验总结

发布: 2009-6-10 09:48 | 作者: 不详 | 来源: 测试时代采编 | 查看: 365次 | 进入软件测试论坛讨论

领测软件测试网

 * @author bulargy.j.bai  
 * @创建时间:Mar 11, 2008  
 * @描述:  
 */  
@RunWith(Parameterized.class)   
public class MathTest {   
    int faciend;   
    int multiplicator;   
    int result;   
  
    public MathTest(int faciend, int multiplicator, int result) {   
         this.faciend = faciend;   
         this.multiplicator = multiplicator;   
         this.result = result;   
    }   
    /**  
     * @throws java.lang.Exception  
     */  
    @BeforeClass  
    public static void setUpBeforeClass() throws Exception {   
    }   
  
    /**  
     * @throws java.lang.Exception  
     */  
    @AfterClass  
    public static void tearDownAfterClass() throws Exception {}   
  
    /**  
     * Test method for {@link org.bj.util.Math#divide(int, int)}.  
     */  
    @Test(expected=ArithmeticException.class)   
    public void testDivide() {   
        assertEquals(3,Math.divide(9,3));   
        assertEquals(3,Math.divide(10,3));   
        Math.divide(10,0);//除数不能为0,会抛出异常    
   
    }   
  
    /**  
     * Test method for {@link org.bj.util.Math#multiple(int, int)}.  
     */  
    //@Ignore(\"忽略乘法测试\")   
    @Test  
    public void testMultiple() {   
        assertEquals(result,Math.multiple(faciend,multiplicator));   
    }   
       
    @Parameters  
    public static Collection multipleValues() {   
     return Arrays.asList(new Object[][] {   
        {3, 2, 6 },   
        {4, 3, 12 },   
        {21, 5, 105 },   

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网