TestApplication.java 393 B

12345678910111213141516171819202122
  1. import com.shkpr.iot.server.data.IotServerDataApplication;
  2. import org.junit.jupiter.api.Test;
  3. import org.springframework.boot.test.context.SpringBootTest;
  4. /**
  5. * 测试启动类
  6. *
  7. * @author 欧阳劲驰
  8. * @since 0.0.1
  9. */
  10. @SpringBootTest(classes = IotServerDataApplication.class)
  11. public class TestApplication {
  12. /**
  13. * 测试
  14. */
  15. @Test
  16. public void test01() {
  17. }
  18. }