1234567891011121314151617 |
- package com.yihu.jw.common;
- import org.junit.runner.RunWith;
- import org.springframework.boot.SpringBootConfiguration;
- import org.springframework.boot.test.context.SpringBootTest;
- import org.springframework.test.context.junit4.SpringRunner;
- /**
- * Created by chenweida on 2017/11/27.
- */
- @RunWith(SpringRunner.class)
- @SpringBootTest
- @SpringBootConfiguration
- public class BaseTest {
- }
|