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

Junit的除了@Test之外的用法小记,超时、异常、参数、suite、mock

时间:2014-06-22 17:22:28      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:style   class   color   com   get   使用   

成就与否,15%在于个人的才干和技能,而85%在于做人的技术和技巧。和大众融洽地相处,以和谐取悦于人,留意尊重别人的立场,让每个人都觉得自己是重要的,也就得到了讨人喜欢的秘决了。


最近整理代码的时候,总习惯把一些常用的工具类和方法等都写在junit中,这样可以方便于在想用的时候直接copy,在用junit的时候学到了一些比较有用的东西,记录如下:


1.使用junit进行超时测试


    @Test(timeout=2000)
    public void testTimeout() throws InterruptedException {
        Thread.sleep(2000);
    }

    @Test(timeout=2000)
    public void testTimeout() throws InterruptedException {
        Thread.sleep(2001);
    }


2.使用junit进行异常测试

@Test(expected=IOException.class)
    public void testExceptions() throws InterruptedException {

        throw new RuntimeException();
    }
    
    
    @Test(expected=RuntimeException.class)
    public void testExceptions2() throws InterruptedException {
        
        throw new RuntimeException();
    }


3.使用junit进行参数测试

private SimpleDateFormat sdf;
    private String date;
    private String dateformat;
    private String expectedDate;
    
    
    
    public TestJunitParameter(String date, String dateformat,
            String expectedDate) {
        this.date = date;
        this.dateformat = dateformat;
        this.expectedDate = expectedDate;
    }
    
    @Parameters
    public static Collection getParamters() {

        String[][] object = {
                { "2011-07-01 00:20:20", "yyyyMMdd", "20110701" },
                { "2011-07-01 00:20:20", "yyyy年MM月dd日", "2011年07月01日" },
                { "2011-07-01 00:20:20", "HH时mm分ss秒", "00时20分20秒" } };
        List<String[]> list = Arrays.asList(object);
        return  list;
    }

    @Test
    public void testJunitParameter() throws ParseException {
        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Date d = df.parse(this.date);
        sdf = new SimpleDateFormat(this.dateformat);
        String result = sdf.format(d);
        Assert.assertEquals(this.expectedDate, result);

    }


4.使用junit进行Suite测试,不仅仅TestNg可以有suite哦~~~

@RunWith(Suite.class)
@SuiteClasses({TestDateFormat.class,TestIORead.class})
public class TestSuite {
    
    
}

5.使用junit进行mock测试

mock测试其实采用的Mockito进行,所以这里不记录了,将会有一个页单独的介绍Mockito.


如果你有更多更好的关于Junit的用法,请评论或者联系我~~~~

email:hantong4510@163.com

QQ:296222242

Junit的除了@Test之外的用法小记,超时、异常、参数、suite、mock,布布扣,bubuko.com

Junit的除了@Test之外的用法小记,超时、异常、参数、suite、mock

标签:style   class   color   com   get   使用   

原文地址:http://blog.csdn.net/wanghantong/article/details/28897103

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