BaseWebTest.java 523 Bytes
package com.yohoufo.order;

import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;

/**
 * Created by chao.chen on 2019/1/4.
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
        "classpath*:META-INF/spring/mybatis-datasource.xml",
        "classpath*:META-INF/spring/spring*.xml"})
public class BaseWebTest {
}