zoukankan      html  css  js  c++  java
  • spring-mvc junit测试

    import org.junit.runner.RunWith;
    import org.springframework.test.context.ContextConfiguration;
    import org.springframework.test.context.TestPropertySource;
    import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
    import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
    
    /**
     * Created by jecyhw on 16-5-12.
     */
    @RunWith(SpringJUnit4ClassRunner.class)//使用Spring整合Junit的测试类测试
    @ContextConfiguration(locations = {//spring-mvc配置文件
            "file:src/main/resources/applicationContext.xml"
    })
    @TestPropertySource(locations = {//所用到的properties文件
            "file:src/main/resources/mongodb.properties",
            "file:src/main/resources/weixin.properties"
    })
    abstract public class BaseTest extends AbstractJUnit4SpringContextTests {
        //其他所有test继承BaseTest即可
    }
    //简单的测试类
    public class EventDaoTest extends BaseTest{
    
        @Resource
        EventDao eventDao;
    
        @Test
        public void list() {
            JsonUtil.writeAsString(eventDao.list());
        }
    }
  • 相关阅读:
    Scala: 包对象
    云服务使用技巧
    leetcode上一些常见的链表问题
    数据挖掘的价值
    leetcode上的一些分治算法
    双指针的应用
    KNN算法
    线性回归
    leetcode上的一些单链表
    leetcode上的一些栈、队列问题
  • 原文地址:https://www.cnblogs.com/jecyhw/p/5490226.html
Copyright © 2011-2022 走看看