SDKApplicationTests.java 420 B

1234567891011121314151617181920212223
  1. package com.zanxiang.sdk;
  2. import org.junit.jupiter.api.Test;
  3. import org.mybatis.spring.annotation.MapperScan;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. /**
  6. * 单元测试主体
  7. *
  8. * @author xufeng
  9. * @date 2022-06-06 17:06
  10. */
  11. @SpringBootTest(classes = SDKApplication.class)
  12. @MapperScan("com.zanxiang.sdk.mapper")
  13. public class SDKApplicationTests {
  14. @Test
  15. void contextLoads() {
  16. }
  17. }