BaseTest.java 387 B

1234567891011121314151617
  1. package com.yihu.jw.common;
  2. import org.junit.runner.RunWith;
  3. import org.springframework.boot.SpringBootConfiguration;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. import org.springframework.test.context.junit4.SpringRunner;
  6. /**
  7. * Created by chenweida on 2017/11/27.
  8. */
  9. @RunWith(SpringRunner.class)
  10. @SpringBootTest
  11. @SpringBootConfiguration
  12. public class BaseTest {
  13. }