1234567891011121314151617181920212223 |
- package com.zanxiang.sdk;
- import org.junit.jupiter.api.Test;
- import org.mybatis.spring.annotation.MapperScan;
- import org.springframework.boot.test.context.SpringBootTest;
- /**
- * 单元测试主体
- *
- * @author xufeng
- * @date 2022-06-06 17:06
- */
- @SpringBootTest(classes = SDKApplication.class)
- @MapperScan("com.zanxiang.sdk.mapper")
- public class SDKApplicationTests {
- @Test
- void contextLoads() {
- }
- }
|