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

Junit4模板

时间:2019-12-17 22:19:11      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:system   ott   private   frame   count   ntb   imp   类继承   ring   

模板

MallApplicationTests

import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class MallApplicationTests {
}

其余测试类继承上述主类即可

import org.junit.Test;

public class CategoryMapperTest extends MallApplicationTests {

    @Resource
    private CategoryMapper categoryMapper;

    @Test
    public void countByExample() {
        CategoryExample categoryExample = new CategoryExample();
        categoryExample.or().andParentIdEqualTo(0);
        long count = categoryMapper.countByExample(categoryExample);
        System.out.println(count);
    }
}

Junit4模板

标签:system   ott   private   frame   count   ntb   imp   类继承   ring   

原文地址:https://www.cnblogs.com/zenan/p/12056964.html

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