初始化项目

This commit is contained in:
2023-06-06 19:28:10 +08:00
parent 1eb2d0e9b2
commit 58bbe3419c
11 changed files with 1958 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
package com.hongawen;
import com.njcn.syncdata.HBSyncDataApplication;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.context.web.WebAppConfiguration;
/**
* @author hongawen
* @version 1.0.0
* @createTime 2021年05月18日 16:24
*/
@RunWith(SpringRunner.class)
@WebAppConfiguration
@SpringBootTest(classes = HBSyncDataApplication.class)
public class BaseJunitTest {
}