码迷,mamicode.com
首页 > 其他好文 > 详细

一次运行多个测试类2-1个测试类重复测试

时间:2015-04-17 20:11:40      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

package com.mengdd.junit;

import junit.extensions.RepeatedTest;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class TestAll extends TestCase
{

    public static Test suite()
    {
        // 创建一个测试套件
        TestSuite suite = new TestSuite();

        // 增加测试类的class对象
        suite.addTestSuite(CalculatorTest.class);
        suite.addTestSuite(CalculatorTest2.class);

        // 测试某个方法多次,注意测试类需要提供带参数的构造方法
        suite.addTest(new RepeatedTest(new CalculatorTest("testSubtract"), 20));

        return suite;

    }
}

 

一次运行多个测试类2-1个测试类重复测试

标签:

原文地址:http://www.cnblogs.com/harry335/p/4435656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!